gpt4 book ai didi

html - super 基本的 HTML/CSS 格式化

转载 作者:太空宇宙 更新时间:2023-11-04 02:40:30 24 4
gpt4 key购买 nike

我正在完成一项作业,同时自学编码。

p.important {
font-size: 1.5em;
font-weight: 900;
}
<p class="important">Warning: We have no slow lorises here.</p>

这应该将字体大小更改为 150% 和粗体...但它不起作用。我代码中的所有其他内容都按照我想要的方式运行。但我无法让它发挥作用。我错过了什么吗?

最佳答案

如果您还没有 - 您可能需要指定您的起始字体大小。

当你开始一个新的 CSS 时,你可能应该将你的 bodyhtml 设置为 font-size:100%;。这将确保您所有的文本都是 16px 开始的。然后,当您希望文本为 32px 时,只需将元素的字体大小设置为 2em;

body, html {
font-size:100%; //Sets default font size to 16px;
}
p.important {
font-size:1.5em; //Is relative from the closest parent with a font-size 1.5*16 = 24px
}

关于html - super 基本的 HTML/CSS 格式化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34821768/

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