gpt4 book ai didi

html - CSS 属性 Box-Sizing 对盒子模型没有影响

转载 作者:行者123 更新时间:2023-11-28 00:23:15 26 4
gpt4 key购买 nike

有人发布了这个问题,它让我开始思考。

table cell fixed height and border issue in firefox

所以我做了如下操作。

HTML:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Template</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>

<table id="first" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
<td>Cell 5</td>
</tr>
</tbody>
</table>

<table id="second" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
<td>Cell 5</td>
</tr>
</tbody>
</table>

<table id="third" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
<td>Cell 5</td>
</tr>
</tbody>
</table>

</body>
</html>

使用以下 CSS:

* {
padding: 0;
margin: 0;
font: 15px arial, sans-serif;
line-height: 1;
}
table {
border-collapse: collapse;
border-spacing: 0;
float: left;
margin-left: 5px;
}
table#first tbody tr td {
height: 35px;
border-bottom: 5px solid #000;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
table#second tbody tr td {
height: 35px;
border-bottom: 5px solid #000;
box-sizing: content-box;
-moz-box-sizing: content-box;
}
table#third tbody tr td {
height: 35px;
border-bottom: 5px solid #000;
box-sizing: padding-box;
-moz-box-sizing: padding-box;
}

问题在于,无论 box-sizing 属性的值为 border-box (click for pic)、content-box (click for pic) 和 padding-box (click for pic),在 Firefox 6.0.2 中,在 Firebug 1.8.2 下,布局选项卡以及计算出的高度显示所有 <td> 的高度为 32px,边框为 3px。

要么是哪里出了问题,要么是我遗漏了一些简单的东西,要么是我的盒模型概念有误?

也有人可以为“box-sizing”和“padding-box”创建标签吗

最佳答案

这是 Firefox 实现 box-sizing 的一个已知问题。 The MDN page for box-sizing说:

Notes

See bug 243412 and its dependents:

  • -moz-box-sizing doesn't apply to table cells

关于html - CSS 属性 Box-Sizing 对盒子模型没有影响,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7554731/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com