• 2022-06-12
    请阅读下面的代码,并按照要求作答。HTML中的代码如下:<;div id="father" class="c1">;<;p id="son" class="c2">;文字<;/p>;<;/div>;>;使用内嵌式CSS样式,对应代码如下:<;style type="text/css">;#father #son{color:blue;}#father p.c2{color:yellow;}div.c1 p.c2{color:red;}#father p{color:green;}<;/style>;认真分析以上代码,写出页面中的“文字”是什么颜色?
  • 举一反三