我有以下的html:絕對定位的div
<!DOCTYPE html>
<html>
<head>
<title>JBA</title>
<style type="text/css">
body {
margin:0;
padding:0;
}
#layout {
float: left;
}
#title {
padding: 10px;
border: 1px solid #ccc;
position: relative;
}
#content {
position: absolute;
top: 26px;
left: 0;
right: 0;
bottom: 0;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<div id="layout">
<label id="title">Below is content:</label>
<div id="content">
</div>
</div>
</body>
<script>
</script>
</html>
我需要的是定位#內容格設置正下方#title標籤。但是,浮動和位置設置不應該改變。那麼,如何計算#內容的頂部? 26px似乎適用於Chrome,但對於IE,它需要爲28px。爲什麼?