gpt4 book ai didi

html - 如何使用 CSS 将元素移至给定的填充

转载 作者:搜寻专家 更新时间:2023-10-31 22:34:50 25 4
gpt4 key购买 nike

在下图中。我为容器提供了 10px 的填充,因为大多数时候我都需要那个填充。只有标题(蓝色)我不需要填充。如何通过填充扩展标题?

http://i.stack.imgur.com/DeSHZ.jpg

我不想为容器内的每个元素单独填充。

enter image description here

最佳答案

标题上的负边距。

参见 jsFiddle:http://jsfiddle.net/f2cdJ/

CSS

div {
background: red;
padding:10px;
width:200px;
}
p {
background: green;
}
h2 {
margin: 0 -10px;
background: blue;
}

HTML

<div>
<p>This is the paragraph. This is the paragraph.</p>
<h2>This is a heading</h2>
<p>This is the paragraph. This is the paragraph.</p>
<h2>This is a heading</h2>
<p>This is the paragraph. This is the paragraph.</p>
</div>

关于html - 如何使用 CSS 将元素移至给定的填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5711930/

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