这是在其中padding-right和padding-bottom为0,但padding-left和padding-top越来越大的代码。如何使它们为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>

最佳答案

这是因为来自的填充和边距。只需使用css中的以下代码将它们设置为零即可:

ul { padding:0px; margin:0px; }

09-19 13:30