css中的高度包含边框吗(即height=content+padding?还是height=content+padding+border?)?
发布网友
发布时间:2022-04-22 23:21
我来回答
共4个回答
热心网友
时间:2023-10-08 18:44
在xhtml1.1中(即标准模式中)
div {height:100px;margin:10px;padding:10px;border:10px;}
那么这个div物理高度应该是 100+10x2+10x2+10x2
你将你的测试代码,包括头部声明,xhtml,css 帖上来。
我来看看你以为的3px是如何造成的
热心网友
时间:2023-10-08 18:45
css中,height不包含任何padding、border
热心网友
时间:2023-10-08 18:45
1,在标准盒模型:除IE以外的所有浏览器都是标准盒模型
width=content的宽;
height=content的高;
2,非标准盒模型:又称怪异盒模型,只有IE是使用该模型
width=content的宽+padding*2+border*2;
height=content的高+padding*2+border*2;
热心网友
时间:2023-10-08 18:46
你的代码我们大家看看在说