search
HomeWeb Front-endHTML TutorialPlease let me know why the padding-bottom and padding-right are extra when setting the same padding for the li element_html/css_WEB-ITnose

The code is as follows

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>无标题文档</title><style>	body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,img {padding:0;margin:0;} 	#div1{		margin:10px;		width:300px;		height:200px;	}	#div1 textarea{		width:300px;		height:180px;	}	#div2{		margin:10px auto;		height:400px;		width:400px;		border:1px solid black;		overflow:auto;	}	#div2 ul li{		border-bottom:1px dashed black;		list-style:none;		padding:10px 10px 10px 10px;			}</style><script type="text/javascript">	window.onload=function(){		var adiv1=document.getElementById("div1");		var adiv2=document.getElementById("div2");		var obtn=adiv1.getElementsByTagName("input")[0];		var otxt=adiv1.getElementsByTagName("textarea")[0];		var oul=document.getElementById("ul1");		obtn.onclick=function(){			var oli=document.createElement("li");			oli.innerHTML=otxt.value;			otxt.value="";			if(oul.children.length>0)				oul.insertBefore(oli,oul.children[0]);			else				oul.appendChild(oli);			//运动			var iheight=oli.offsetHeight;			alert(iheight);			oli.style.height="0";			move(oli,{height:iheight});		};	};		function getStyle(obj,attr){		if(obj.currentStyle)			return obj.currentStyle[attr];		else			return getComputedStyle(obj,false)[attr];	}	function move(obj,json,fun){		clearInterval(obj.timer);		obj.timer=setInterval(function(){			var astop=true;			for(var attr in json){				var cur=0;				if(attr=="opacity")					cur=Math.round(parseFloat(getStyle(obj,attr))*100);				else					cur=parseInt(getStyle(obj,attr));				var speed=(json[attr]-cur)/10;				speed=speed>0?Math.ceil(speed):Math.floor(speed);				if(cur!=json[attr])					astop=false;				if(attr=="opacity"){					if(obj.style.filter)						obj.style.filter="alpha(opacity:"+(speed+cur)+")";					else						obj.style.opacity=(speed+cur)/100;				}				else					obj.style[attr]=speed+cur+"px";			}			if(astop){				clearInterval(obj.timer);				if(fun)					fun();			}		},30);	}</script></head><body>	<div id="div1">		<form>			<textarea id="text1"></textarea>			<input type="button" value="发布" id="btn"/>		</form>	</div>	<div id="div2">		<ul id="ul1">		</ul>	</div></body></html>


Reply to the discussion (solution)


What’s the problem

After reading it for a long time I don’t understand what you are asking


What’s the problem


The padding on the top and bottom of ul is the same, but the space below is obviously larger than the top

After reading for a long time, I didn’t understand what you were asking.


The padding on the top and bottom of ul is the same, but the space below is obviously larger than the top

This is the height definition of offsetHeight and the box- of li sizing is caused by the conflict of content-box

The offsetHeight property returns the viewable height of an element in pixels, including padding, border and scrollbar
That is to say, offsetHeight contains content, padding-top, padding- bottom, border-top, border-bottom, and the height involving scrollbar
box-sizing: the height of the content-box specified element only contains the content, and not others.
In your code, after the height of li is reset, and the sum of padding-top and padding-bottom is always more than expected.
After that, padding-top and padding-bottom have not changed, they are both the 10px you specified, and this extra Part is added to the height of content, but the font of content does not become larger, and the text is not processed to be vertically centered in content, so it looks like the top and bottom spaces are different

So you can add the following CSS, when scrollbar does not exist, it can be solved

li{    box-sizing: border-box;}

The definition of box-sizing on W3C is quoted

3.1. box-sizing property

Name: box-sizing
Value: content-box | border-box
Initial: content-box

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 relevant sides from the specified width and height properties. As the content width and height cannot be 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.



This definition indicates the default of box-sizing The value is content-box; the value of box-sizing will affect the definition of height in css - whether the padding and border in the vertical direction will be included in height

W3C 上 box-sizing 的定义引用

3.1. box-sizing property

Name: box-sizing
Value: content-box | border-box
Initial: content-box

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.



这个定义表明 box-sizing 的默认值是 content-box; box-sizing 的值将影响 css 中 height  的定义-- 垂直方向上的 padding 和 border 究竟会不会包含在 height 中

W3C 上 box-sizing 的定义引用

3.1. box-sizing property

Name: box-sizing
Value: content-box | border-box
Initial: content-box

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.



这个定义表明 box-sizing 的默认值是 content-box; box-sizing 的值将影响 css 中 height  的定义-- 垂直方向上的 padding 和 border 究竟会不会包含在 height 中
但是如果 出现了滚动条,页面就会变成这个样子

看了半天没看懂你问的是什么


ul上下的padding一样,但是下面的空白明显大于上面 你这里又给他加了高度
//运动            var iheight=oli.offsetHeight;            alert(iheight);            oli.style.height="0";            move(oli,{height:iheight});

但是如果 出现了滚动条,页面就会变成这个样子



我分别在 Chrome 42, IE8, Firefox 39.0 测试, 只发现 Firefox 存在这个问题

下面多余的部分不全是padding,还有一部分是li的高。
oli.offsetHeight获取的值是包括padding在内的,但是oli.style.height这样赋值的高是不包括padding的。
最简单的解决方法就是减掉padding,即var iheight=oli.offsetHeight-20;
但这样解决效果不太好,因为oli.style.height=“0”;时其实padding部分还是看的见的。
要效果好,也要简单就用jquery吧,修改如下

<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script><!--+++++++++++++加载jquery++++++++++++++--><script type="text/javascript">    window.onload=function(){        var adiv1=document.getElementById("div1");        var adiv2=document.getElementById("div2");        var obtn=adiv1.getElementsByTagName("input")[0];        var otxt=adiv1.getElementsByTagName("textarea")[0];        var oul=document.getElementById("ul1");        obtn.onclick=function(){            var oli=document.createElement("li");            oli.style.display="none";//+++++++++++++++++++++先隐藏++++++++++++++++++++            oli.innerHTML=otxt.value;            otxt.value="";            if(oul.children.length>0)                oul.insertBefore(oli,oul.children[0]);            else                oul.appendChild(oli);            $(oli).slideDown(800);//++++++++++++++++用jquery方法展开li++++++++++++++++++++            /*-------------------------------这段不需要了------------------------------------------            //运动            var iheight=oli.offsetHeight-20;            alert(iheight);            oli.style.height="0";            move(oli,{height:iheight});            */        };    };</script>

但是如果 出现了滚动条,页面就会变成这个样子



仅在 Firefox 中发现这个问题

原因已经证实:  

当 div2 出现垂直滚动条时, 将压缩 ul 和 li 的宽度, 而每一个 li 内容没有发生变化, 当宽度减小时, 其中文字占用的行数就有可能增加, 这样就需要更大的 height 才能容纳, 此时 Chrome, IE 都忽略了 height 被设成的固定的值, 而是将它重新计算并调整;
但 Firefox 的处理方式却不一样, 它没有忽略  height 那个已被设定的固定的值, 而是维持那个值, 不做重新计算并调整, 所以就造成最后文本超出边界的问题.    而最新插入的 li 是在插入的时候(无论有(已有/将有)无滚动条)自动计算出的 height, 所以唯一最新的 li 不会存在文本超出边界的问题.

解决方案:

在 每一次插入新的 li 之前, 将上一个 li 的 height 恢复为浏览器自动计算

经测试, Chrome 42, IE8, Firefox 39.0 都没有问题

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>无标题文档</title><style>	body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,img {padding:0;margin:0;} 	#div1{		margin:10px;		width:300px;		height:200px;	}	#div1 textarea{		width:300px;		height:180px;	}	#div2{		margin:10px auto;		height:400px;		width:400px;		border:1px solid black;		overflow:auto;	}	#div2 ul li{		border-bottom:1px dashed black;		list-style:none;		padding:10px 10px 10px 10px;		box-sizing: border-box;	}</style><script type="text/javascript">	window.onload=function(){		var adiv1=document.getElementById("div1");		var adiv2=document.getElementById("div2");		var obtn=adiv1.getElementsByTagName("input")[0];		var otxt=adiv1.getElementsByTagName("textarea")[0];		var oul=document.getElementById("ul1");		obtn.onclick=function(){			var oli=document.createElement("li");			oli.innerHTML=otxt.value;			otxt.value="";			if(oul.children.length>0) {                oul.children[0].style.height = 'auto'; // 将上一个 li 的 height 恢复为浏览器自动计算				oul.insertBefore(oli,oul.children[0]);			} else				oul.appendChild(oli);			//运动			var iheight=oli.offsetHeight;			alert(iheight);			oli.style.height="0";			move(oli,{height:iheight});		};	};		function getStyle(obj,attr){		if(obj.currentStyle)			return obj.currentStyle[attr];		else			return getComputedStyle(obj,false)[attr];	}	function move(obj,json,fun){		clearInterval(obj.timer);		obj.timer=setInterval(function(){			var astop=true;			for(var attr in json){				var cur=0;				if(attr=="opacity")					cur=Math.round(parseFloat(getStyle(obj,attr))*100);				else					cur=parseInt(getStyle(obj,attr));				var speed=(json[attr]-cur)/10;				speed=speed>0?Math.ceil(speed):Math.floor(speed);				if(cur!=json[attr])					astop=false;				if(attr=="opacity"){					if(obj.style.filter)						obj.style.filter="alpha(opacity:"+(speed+cur)+")";					else						obj.style.opacity=(speed+cur)/100;				}				else					obj.style[attr]=speed+cur+"px";			}			if(astop){				clearInterval(obj.timer);				if(fun)					fun();			}		},30);	}</script></head><body>	<div id="div1">		<form>			<textarea id="text1"></textarea>			<input type="button" value="发布" id="btn"/>		</form>	</div>	<div id="div2">		<ul id="ul1">		</ul>	</div></body></html>


看了半天没看懂你问的是什么


ul上下的padding一样,但是下面的空白明显大于上面 你这里又给他加了高度
//运动            var iheight=oli.offsetHeight;            alert(iheight);            oli.style.height="0";            move(oli,{height:iheight});
这儿是为了实现一个滑动效果,和padding没关系吧,何况最终的高度并没有改变


但是如果 出现了滚动条,页面就会变成这个样子



我分别在 Chrome 42, IE8, Firefox 39.0 测试, 只发现 Firefox 存在这个问题
chrome43,IE11也存在问题

下面多余的部分不全是padding,还有一部分是li的高。
oli.offsetHeight获取的值是包括padding在内的,但是oli.style.height这样赋值的高是不包括padding的。
最简单的解决方法就是减掉padding,即var iheight=oli.offsetHeight-20;
但这样解决效果不太好,因为oli.style.height=“0”;时其实padding部分还是看的见的。
要效果好,也要简单就用jquery吧,修改如下

<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script><!--+++++++++++++加载jquery++++++++++++++--><script type="text/javascript">    window.onload=function(){        var adiv1=document.getElementById("div1");        var adiv2=document.getElementById("div2");        var obtn=adiv1.getElementsByTagName("input")[0];        var otxt=adiv1.getElementsByTagName("textarea")[0];        var oul=document.getElementById("ul1");        obtn.onclick=function(){            var oli=document.createElement("li");            oli.style.display="none";//+++++++++++++++++++++先隐藏++++++++++++++++++++            oli.innerHTML=otxt.value;            otxt.value="";            if(oul.children.length>0)                oul.insertBefore(oli,oul.children[0]);            else                oul.appendChild(oli);            $(oli).slideDown(800);//++++++++++++++++用jquery方法展开li++++++++++++++++++++            /*-------------------------------这段不需要了------------------------------------------            //运动            var iheight=oli.offsetHeight-20;            alert(iheight);            oli.style.height="0";            move(oli,{height:iheight});            */        };    };</script>

是的,我不用offsetHeight就可以了
可以用
function getStyle(obj,attr){		if(obj.currentStyle)			return obj.currentStyle[attr];		else			return getComputedStyle(obj,false)[attr];	}
这个函数来获取li的高度就不会包括padding
谢谢,问题解决了!
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Why are HTML attributes important for web development?Why are HTML attributes important for web development?May 12, 2025 am 12:01 AM

HTMLattributesarecrucialinwebdevelopmentforcontrollingbehavior,appearance,andfunctionality.Theyenhanceinteractivity,accessibility,andSEO.Forexample,thesrcattributeintagsimpactsSEO,whileonclickintagsaddsinteractivity.Touseattributeseffectively:1)Usese

What is the purpose of the alt attribute? Why is it important?What is the purpose of the alt attribute? Why is it important?May 11, 2025 am 12:01 AM

The alt attribute is an important part of the tag in HTML and is used to provide alternative text for images. 1. When the image cannot be loaded, the text in the alt attribute will be displayed to improve the user experience. 2. Screen readers use the alt attribute to help visually impaired users understand the content of the picture. 3. Search engines index text in the alt attribute to improve the SEO ranking of web pages.

HTML, CSS, and JavaScript: Examples and Practical ApplicationsHTML, CSS, and JavaScript: Examples and Practical ApplicationsMay 09, 2025 am 12:01 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML is used to build web page structure; 2. CSS is used to beautify the appearance of web pages; 3. JavaScript is used to achieve dynamic interaction. Through tags, styles and scripts, these three together build the core functions of modern web pages.

How do you set the lang attribute on the  tag? Why is this important?How do you set the lang attribute on the tag? Why is this important?May 08, 2025 am 12:03 AM

Setting the lang attributes of a tag is a key step in optimizing web accessibility and SEO. 1) Set the lang attribute in the tag, such as. 2) In multilingual content, set lang attributes for different language parts, such as. 3) Use language codes that comply with ISO639-1 standards, such as "en", "fr", "zh", etc. Correctly setting the lang attribute can improve the accessibility of web pages and search engine rankings.

What is the purpose of HTML attributes?What is the purpose of HTML attributes?May 07, 2025 am 12:01 AM

HTMLattributesareessentialforenhancingwebelements'functionalityandappearance.Theyaddinformationtodefinebehavior,appearance,andinteraction,makingwebsitesinteractive,responsive,andvisuallyappealing.Attributeslikesrc,href,class,type,anddisabledtransform

How do you create a list in HTML?How do you create a list in HTML?May 06, 2025 am 12:01 AM

TocreatealistinHTML,useforunorderedlistsandfororderedlists:1)Forunorderedlists,wrapitemsinanduseforeachitem,renderingasabulletedlist.2)Fororderedlists,useandfornumberedlists,customizablewiththetypeattributefordifferentnumberingstyles.

HTML in Action: Examples of Website StructureHTML in Action: Examples of Website StructureMay 05, 2025 am 12:03 AM

HTML is used to build websites with clear structure. 1) Use tags such as, and define the website structure. 2) Examples show the structure of blogs and e-commerce websites. 3) Avoid common mistakes such as incorrect label nesting. 4) Optimize performance by reducing HTTP requests and using semantic tags.

How do you insert an image into an HTML page?How do you insert an image into an HTML page?May 04, 2025 am 12:02 AM

ToinsertanimageintoanHTMLpage,usethetagwithsrcandaltattributes.1)UsealttextforaccessibilityandSEO.2)Implementsrcsetforresponsiveimages.3)Applylazyloadingwithloading="lazy"tooptimizeperformance.4)OptimizeimagesusingtoolslikeImageOptimtoreduc

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools