最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501
当前位置: 首页 - 科技 - 知识百科 - 正文

盒模型的问题_html/css

来源:懂视网 责编:小采 时间:2020-11-27 16:09:06
文档

盒模型的问题_html/css

盒模型的问题_html/css_WEB-ITnose:我记得我之前在网上有查到,如果在CSS属性里面声明一个值可以使得外边距,内边距和框的数值是计算在盒的高度和宽度里面的,但我忘记这个属性和这个值是什么了?求高手告知。 还有我想问为什么CSS默认外边距,内边距和框的值要独立出来,不算在盒的高度和宽
推荐度:
导读盒模型的问题_html/css_WEB-ITnose:我记得我之前在网上有查到,如果在CSS属性里面声明一个值可以使得外边距,内边距和框的数值是计算在盒的高度和宽度里面的,但我忘记这个属性和这个值是什么了?求高手告知。 还有我想问为什么CSS默认外边距,内边距和框的值要独立出来,不算在盒的高度和宽

我记得我之前在网上有查到,如果在CSS属性里面声明一个值可以使得外边距,内边距和框的数值是计算在盒的高度和宽度里面的,但我忘记这个属性和这个值是什么了?求高手告知。

还有我想问为什么CSS默认外边距,内边距和框的值要独立出来,不算在盒的高度和宽度里面?这样有什么好处吗?


回复讨论(解决方案)

box-sizing 设为 content-box 时, height 和 width 只包含内容, 不含 padding 和 border
设为 border-box 时, height 和 width 包含 padding 和 border

你看看 W3C 官方的文档:

http://www.w3.org/TR/css3-ui/#box-sizing

content-box
This is the behavior of width and height as specified by CSS2.1. The specified width and height (and respective min/max properties) apply to the width and height respectively of the content box of the element. The padding and border of the element are laid out and drawn outside the specified width and height.
border-box
Length and percentages values for width and height (and respective min/max properties) on this element determine the border box of the element. 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 ([CSS21], section 10.2), this computation is floored at 0. Used values, as exposed for instance through getComputedStyle(), also refer to the border box.

还有我想问为什么CSS默认外边距,内边距和框的值要独立出来,不算在盒的高度和宽度里面?这样有什么好处吗?



如果我想要明确的设置内容的 height 和 width, 但 css 的 height 和 width 这两个属性却始终把 padding 和 border 的尺寸都包含在其中, 那我设置时不就是得先计算才能设置好吗
比如

$(element).css('width', 内容期望的宽度 + padding-left + padding-right + border-left + border-right);

这样岂不是相当麻烦吗, 而且如果 padding-left , padding-right , border-left, border-right 之中的任意一个发生改变时, 都将影响到 内容的宽度

还有我想问为什么CSS默认外边距,内边距和框的值要独立出来,不算在盒的高度和宽度里面?这样有什么好处吗?



如果我想要明确的设置内容的 height 和 width, 但 css 的 height 和 width 这两个属性却始终把 padding 和 border 的尺寸都包含在其中, 那我设置时不就是得先计算才能设置好吗
比如

$(element).css('width', 内容期望的宽度 + padding-left + padding-right + border-left + border-right);

这样岂不是相当麻烦吗, 而且如果 padding-left , padding-right , border-left, border-right 之中的任意一个发生改变时, 都将影响到 内容的宽度



非常感谢。

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文档

盒模型的问题_html/css

盒模型的问题_html/css_WEB-ITnose:我记得我之前在网上有查到,如果在CSS属性里面声明一个值可以使得外边距,内边距和框的数值是计算在盒的高度和宽度里面的,但我忘记这个属性和这个值是什么了?求高手告知。 还有我想问为什么CSS默认外边距,内边距和框的值要独立出来,不算在盒的高度和宽
推荐度:
标签: 盒子 问题 html
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top