<style type="text/css">
.embed-responsive{position:relative;width:100%;height:0;padding:0;overflow:hidden;}
/*自定义宽高比例 4:3 可以根据实际情况修改,多写几个*/
.embed-responsive-4by3{padding-bottom:75%;}
/*当不确定高度或者宽度是否会超出时使用*/
.embed-responsive-img-default{position:absolute;top:0;left:0;width:100%;min-height:100%;}
/*当确定高度会超出时使用*/
.height-middle{position:absolute;top:50%;left:0;width:100%;height:auto;display:inline-block;}
.embed-responsive-img-hm{position:relative;top:-50%;width:100%;}
/*当确定高度会超出时使用*/
.width-middle{position:absolute;left:50%;width:auto;height:100%;display:inline-block;}
.embed-responsive-img-wm{height:100%;margin-left:-50%;}
</style>
<div style="width:300px;">
<!--demo 当确定高度一定会超出时,并且希望图片在height上居中显示-->
<div class="embed-responsive embed-responsive-4by3">
<div class="height-middle">
<img class="embed-responsive-img embed-responsive-img-hm" src="picture.jpg" alt="" title="" />
</div>
</div>
</div>
我用父元素继承width:100%;display:inline-block; 子元素是img width:100%;height:auto;
这样父元素就能获取到子元素的高度
然后我用子元素position:relative; top:-50%;
可是为什么top:-50%;无效
google浏览器上面盒子模型显示的有top 并且有正确的值 但是网页中并没有进行渲染???