css - How to fill color to empty space with overflow hidden? -


i have simple css can display image prescribed width , height. if put image height more width can fill box easily. when upload image having more width , less height. bottom part of image remains vacant or empty space.

help me fill empty space marked black cirle in image below. whatever method do.

enter image description here

css

.container4 {      width: 9.5em;      overflow: scroll;      height: 10em;  } .container4 img {      width: 100%;  } 

if set height 100% , don't set width fill whole frame, picture cut off, otherwise can tile image.


Comments

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -