给出高度值时会得到不同的结果吗? 我想念什么吗?还是MS渲染得那么糟糕?
.box {
background: #fff;
width: 100%;
clear: both;
display: inline-block;
-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
-moz-box-shadow: 0 1px 0 rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
box-shadow: 0 1px 0 rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.height-1{
height:35px
}
.height-2{
height:50px
}
<div class="box height-1">Lorem Ipsum</div>
<br>
<br>
<div class="box height-2">Lorem Ipsum</div>