我正在尝试一种使用边距使图标居中的方法。我也给图标一个宽度(%)和高度(%)。我有
.container{
width:600px;
height:200px;
background-color:orange;
}
img {
width:6%;
margin-left:47%;
margin-right:47%;
height:16%;
margin-top:12%;
margin-bottom:12%;
}
body{
}
该方法将图标水平而不是垂直居中。我想知道为什么这不起作用
img {
width:6%;
margin-left:47%;
margin-right:47%;
height:16%;
margin-top:42%;
margin-bottom:42%;
}
我也有这个小提琴,但我使用的边距顶部和边距底部是随机的http://jsfiddle.net/thiswolf/EKWWt/