我試圖用margins.I我給圖標%的寬度和在%高度定心的圖標的方法too.I中心有一個圖標使用利潤對一個div
.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{
}
的方法水平而不是居中圖標vertically.I不知道爲什麼這不會工作
img {
width:6%;
margin-left:47%;
margin-right:47%;
height:16%;
margin-top:42%;
margin-bottom:42%;
}
我也有這個小提琴,但我已經使用了上邊距和下邊距是隨機http://jsfiddle.net/thiswolf/EKWWt/
對於固定佈局:http://jsfiddle.net/EKWWt/2/ – Dev
使用百分比'與容限[頂|底部]'將給出該元素的* width *百分比的餘量。 'margin- [top | bottom]:n%'不是你想要的。 – thirtydot
那是什麼元素? – Gandalf