gpt4 book ai didi

css - 不需要的换行符字体更改

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

我想在一行中包含多个文本样式,但是当我更改样式时,自动换行。我制作了另一个没有这个问题的页面,但我找不到不同之处。标题样式如下:

h1 {
font-family: 'Varela', sans-serif;
font-size: 0.9em;
font-weight: 400;
color: rgb(4,4,4);
text-decoration: none;
margin-bottom: 0px;
margin-top: 0px;
line-height:normal;
font-style: normal;
letter-spacing: 0.15em;
}
h2 {
font-family: 'Montserrat', sans-serif;
font-size: 1.9em;
font-weight: 700;
color: rgb(4,4,4);
text-decoration: none;
margin-bottom: 0px;
margin-top: 0px;
line-height:normal;
font-style: bold;
letter-spacing: 0.1em;
}
h3 {
font-family: 'Open Sans', sans-serif;
font-size: 0.8em;
font-style: normal;
font-weight: 300;
line-height: 1.6em;
color: rgb(4,4,4);
margin-bottom: 0px;
margin-top: 0px;
}
h4 {
font-family: 'Open Sans', sans-serif;
font-size: 0.8em;
font-style: normal;
font-weight: 300;
line-height: 1.6em;
color: rgb(4,4,4);
margin-bottom: 0px;
margin-top: 0px;
}
h5 {
font-family: 'Open Sans', sans-serif;
font-size: 0.8em;
font-style: normal;
font-weight: 400;
line-height: 1.6em;
color: rgb(4,4,4);
margin-bottom: 0px;
margin-top: 0px;
}

最佳答案

H1、H2、H3 等是 block 元素。所以不要写这样的东西:

<h1>This is one font</h1><h2> and this is another.</h2>

这样写:

<span class="font1">This is one font</span><span class="font2"> and this is another</span>

然后给 span1 和 span2 类不同的字体系列。

关于css - 不需要的换行符字体更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23030598/

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