我想水平居中一個圖像。但是它不會從頁面的左側移動。 This answer在我的情況下不起作用。我究竟做錯了什麼?中心圖像
#container {
width: 100%;
border: 2px yellow dashed;
height: 100px;
}
#profile-image img{
margin-left: auto;
margin-right: auto;
border: 2px orange solid;
}
我的空間:
<div id="container">
<div id="profile-image">
<p><img src="<?php echo $data['profile_image_url'];?>" alt="me"></p>
</div>
+1謝謝。有效。 – Anthony
雖然這種方法的問題是你必須明確地分配一個寬度的容器.. – reikyoushin