gpt4 book ai didi

html - 正常和初始(css)有什么区别

转载 作者:行者123 更新时间:2023-11-27 23:05:07 26 4
gpt4 key购买 nike

在这个属性中,normal 和 initial 有什么区别?两者不是做同样的事情吗?

1st example

<p class="a">This is a paragraph, normal.</p>
<p class="b">This is a paragraph, italic.</p>
<p class="c">This is a paragraph, oblique.</p>

p.a {
font-style: normal;
}

p.b {
font-style: italic;
}

p.c {
font-style: oblique;
}

2nd example

<p class="normal">This is a paragraph.</p>
<p class="light">This is a paragraph.</p>
<p class="thick">This is a paragraph.</p>
<p class="thicker">This is a paragraph.</p>

p.normal {
font-weight: normal;
}

p.thick {
font-weight: bold;
}

p.thicker {
font-weight: 900;
}

最佳答案

initial 是可以赋予​​任何 属性以将其设置回默认值的值。

normal 恰好是这两个属性的默认值。

关于html - 正常和初始(css)有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50052302/

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