所以我有以下的HTML:Div標籤嵌套
<html>
<head>
<style>
.box
{
height: 100px;
width: 100px;
}
#box1
{
background-color: Red;
}
#box2
{
background-color: Red;
}
#box3
{
border-style: dotted;
}
#box4
{
background-color: Red;
}
</style>
</head>
<body>
<div id="boxes">
<div id="box1" class="box"></div>
<div id="box2" class="box"></div>
<div id="box3" class="box"></div>
<div id="box4" class="box"></div>
</div>
</body>
</html>
如果我改變任何div標籤對他們的單個標籤的版本,例如:
<div id="box1" class="box"/>
後續至少在Chrome,Firefox和IE中嵌入標籤。有沒有人知道這個行爲的交易?這對我來說似乎是一個錯誤。
奇怪,這裏沒有任何表明行爲。你是什麼意思嵌套?就像當你檢查頁面的源代碼時你看到它們嵌套了?或視覺? – Jerome
習慣上我只使用BR和IMG的單一標籤版本,其餘的我總是打開和關閉。不知道爲什麼我這樣做,但我記得它可能與舊的瀏覽器兼容性有關。我認爲所有現代瀏覽器都可以。 – ToddBFisher