gpt4 book ai didi

html - 更改 DIV 中字体的颜色 (CSS)

转载 作者:技术小花猫 更新时间:2023-10-29 11:50:45 25 4
gpt4 key购买 nike

我正在尝试根据它们所在的 div 更改 H2 字体和 H2 链接字体的颜色和大小,但没有成功。我究竟做错了什么?

 <style>
h2 {
color:fff;
font-size: 20px;
}
social.h2 {
color:pink;
font-size: 14px;
}
social.h2.h2color {
color:purple;
font-size: 10px;
}
tv.h2 {
color:green;
font-size: 14px;
}
tv.h2.h2color {
color:orange;
font-size: 10px;
}
</style>

<h2>List of Companies </h2>
<div class="social">

<h2> <A href="http://www.facebook.com">Facebook </a>
<span class="h2color">Found in 2004 </span> </h2>
blah blah blah

<h2> <A href="http://www.twitter.com">Twitter </a>
<span class="h2color">Found in 2007 </span> </h2>
blah blah blah

</div>


<div class="tv">

<h2> <A href="http://www.fox.com">Fox </a>
<span class="h2color">Found in 2004 </span> </h2>
blah blah blah

<h2> <A href="http://www.nbc.com">NBC </a>
<span class="h2color">Found in 2007 </span> </h2>
blah blah blah
</div>

我试着让它看起来像这样:

enter image description here

最佳答案

您的第一个 CSS 选择器— social.h2 —正在寻找“h2”类中的“社交”元素,例如:

<social class="h2">

类选择器以点 (.) 开头。此外,使用空格 ( ) 表示一个元素在另一个元素内部。找到一个 <h2> social 中元素的后代类,尝试类似的东西:

.social h2 {
color: pink;
font-size: 14px;
}

为了更好地理解 CSS 选择器以及如何使用它们来引用您的 HTML,我建议您阅读 interactive HTML and CSS tutorials from CodeAcademy .我希望这可以帮助您指明正确的方向。

关于html - 更改 DIV 中字体的颜色 (CSS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12999649/

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