以下是填充右側和填充底部爲0但填充左側和填充頂部正在獲取空間的代碼。如何讓他們0?填充不工作
<style type="text/css">
#container{
width:800px;
text-align: center;
height:600px;
margin:0 auto;
border:1px solid black;
overflow: hidden;
padding: 0px;
}
li{
width: 800px;
height: 600px;
list-style: none;
}
</style>
<body>
<div id="container">
<ul>
<li><img src="1.jpg" width="800px" height="600px" ></li>
</ul>
</div>
</body>
您正在使用某種形式的框架(引導/粉底等)? – elicohenator
謝謝阿澤茲。有效。 –
@ user3595028從任何現代瀏覽器(通常爲「F12」)調用您的網絡工具,並評估以在元素級別查看應用的樣式聲明。 –