gpt4 book ai didi

CSS 行高,不起作用?

转载 作者:太空宇宙 更新时间:2023-11-04 12:28:16 25 4
gpt4 key购买 nike

试图得到一个结果来勾勒出 .outline 类的轮廓,但它的间距太近了,当我尝试在我的 .intro 类中使用以下代码时。

.intro {
/** Text Formatting **/
text-align: center;

/** Line Spacing **/
line-height: 3em;
}

如果我不使用行高,我得到的结果仍然是一样的。

enter image description here

HTML

<div class="intro"> <h4> In my <span class="outline">corner</span> of the internet I make messes that some how turn into code. Don't ask me <span class="outline">how</span>, don't ask me <span class="outline">corner</span>, but things just look good and work well.</h4> </div>

CSS

.outline {
/** Styling **/
background: #ff00f6;
color: #FFF;

/** Margin & Padding **/
margin: 3px;
padding: 6px 8px;
}

最佳答案

您提到的代码似乎工作正常。我发现一个问题,可能是您的 css 与 line-height 冲突。尝试将 !important 与 css 放在一起,如下所述:

.intro {
/** Text Formatting **/
text-align: center;

/** Line Spacing **/
line-height: 3em !important;
}

Demo

关于CSS 行高,不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27861443/

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