gpt4 book ai didi

html - 填充属性不添加间距

转载 作者:行者123 更新时间:2023-11-28 10:11:22 24 4
gpt4 key购买 nike

recently realised该 padding 属性在内容和该内容的边框之间添加间距。当我发现填充不添加间距的实例时,我正在测试此属性。

我有一个段落

<p>Some text</p>

和一些样式

p {
background: red;
color: white;
border: dashed 2px blue;
margin-left: 44px
}

结果(JSFiddle)

enter image description here
然后我将 padding: 49px 添加到 CSS。从逻辑上讲,我应该得到类似的东西 enter image description here
但最后我得到了它(JSFiddle)
enter image description here
如我们所见,文本移动了,但没有添加红色间距。为什么?

PS:可能是我表达不好,对不起

最佳答案

你有一个 margin-leftDifference between Margins and Paddings.

删除它:

CSS

p {
background: red;
color: white;
border: dashed 2px blue;
padding-left: 49px
}

In this fiddle

没有更多的空间:)

关于html - 填充属性不添加间距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24365948/

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