我想在身高 < img 高度时剪切图像。
这里jsfiddle:http: //jsfiddle.net/oboshto/AKsaS/
我需要所有高度(1200 + px)。
img{
height: 100%; /* bad */
}
我想在身高 < img 高度时剪切图像。
这里jsfiddle:http: //jsfiddle.net/oboshto/AKsaS/
我需要所有高度(1200 + px)。
img{
height: 100%; /* bad */
}
CSS:
body{
background-image: url('http://oboshto.ru/upme/shits/left%20%281%29.png');
background-position: top left;
background-repeat: no-repeat;
}
HTML:
<div id="wrapper">
SOME CONTENT
<div id="cut"> < - -CUT CUT CUT </div>
</div>
JsFiddle:http: //jsfiddle.net/AKsaS/3/
您还可以position: relative
在#wrapper 上放置一个,这也会将其切断到包装器上。JsFiddle:http: //jsfiddle.net/AKsaS/4/