0
當我在下面找到這個代碼示例時,我只是在研究w3schools上的html/css。 我想知道爲什麼它只顯示列表,當ul有「溢出:隱藏;」 由於溢出隱藏的定義是:溢出被剪切,其餘內容將隱形爲什麼它沒有隱藏溢出沒有工作?
感謝每一個答案:)
<!DOCTYPE html>
<html>
<head>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 16px;
text-decoration: none;
}
li a:hover {
background-color: #111111;
}
</style>
</head>
<body>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>
</body>
</html>
你能提供的鏈接W3Schools的你是指什麼? –
當你有浮動的元素時,隱藏的溢出將確保它們仍然可以被看到。確保ul元素不會崩潰是一種有點不合理的方法。 – Daniel
[CSS背景顏色可能出現重複,除非我添加溢出:隱藏?爲什麼?](http://stackoverflow.com/questions/6479018/css-background-color-not-showing-up-unless-i-add-overflowhidden-why) – Varin