gpt4 book ai didi

html - 如何为类(class)中的类(class)设置css?

转载 作者:太空宇宙 更新时间:2023-11-03 20:03:43 24 4
gpt4 key购买 nike

使用此 HTML 代码。

<div class="noote">
<p class="first admonition-title">Noote</p>
<p class="last">Let's noote.</p>
</div>

如何用css设置Note的颜色为红色?我的意思是,如何使用 css 在其下设置 (div class="noote") 和 (p class="first") 的内容?

最佳答案

试试这个:

/*this will apply for the element with class first 
inside the element with class noot */

.noote .first{
color:red;
}

/* If you wanted to apply a rule for both individually
you can do: */

.noote, .first{
border:1px solid red;
}

关于html - 如何为类(class)中的类(class)设置css?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4717234/

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