gpt4 book ai didi

html - 当填充大于定义的大小时会发生什么?

转载 作者:行者123 更新时间:2023-12-05 05:51:16 24 4
gpt4 key购买 nike

<html>
<head>
<style>
* {
box-sizing: border-box;
}
div {
width: 10px;
padding: 70px;
border: 1px solid #4CAF50;
}
</style>
</head>
<body>

<h2>CSS Padding</h2>
<div>This element has a padding of 70px.</div>

</body>
</html>

我试过了,但不明白结果。当填充大于给定宽度时究竟会发生什么?

最佳答案

您的元素的宽度将等于 70px*2 + 1px*2 = 142px。 padding 和 border 的总和大于指定的宽度,所以就像你的宽度等于 0 并且只有 padding/border 定义最终宽度

That is, any padding or border specified on the element is laid out and drawn inside this specified width and height. The content width and height are calculated by subtracting the border and padding widths of the respective sides from the specified width and height properties. As the content width and height cannot be negative ([CSS2], section 10.2), this computation is floored at 0 ref

你可以清楚地看到为什么 content 宽度最终会等于 0 而 final 宽度只是 padding 和 border。

要用数学表达这一点,您有以下公式:

content-width + padding + border = final-width

content-width = max(0,specified-width - (padding + border))

我正在使用 max() 来表达我们只取正值这一事实。

计算得到142px

如果 specified-width - (padding + border) 为正,您将得到 specified-width = final-width 的逻辑结果

关于html - 当填充大于定义的大小时会发生什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70406153/

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