Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在建立一个网站。在左下角的容器中是我的流派导航。我必须应用负边距属性才能将我li的 ' 放在正确的位置。似乎有一个大约 15px 的顶部填充属性。为什么要这样做?我在代码中看不到任何导致此问题的代码。它应该是齐平的顶部和左侧?
li
它是ul标签的默认边距。
ul
您可以通过提供以下内容来重置它:
ul { margin: 0; padding: 0; }
您可能可以考虑为您的网站使用一些 CSS重置规则。