html - CSS div with dynamic height to responsive background image -


i trying create class dynamic image background on bootstrap3 without success. instead use height equal 180px trying use 100% make responsive. whats wrong?

.audio-cover {  	background: url("http://media.merchantcircle.com/22662073/180px-smiley_svg_full.png");  	background-size: contain;  	background-repeat: no-repeat;  	height: 100%; //instead use 180px  }
<div class="col-xs-4 col-sm-4 col-md-4 audio-cover"></div>

set background-size cover , specify min-height.

check out fiddle


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -