-6ren">
gpt4 book ai didi

css - 如何强制将我的 `` 的所有文本颜色设置为不同?

转载 作者:太空宇宙 更新时间:2023-11-04 12:28:32 26 4
gpt4 key购买 nike

详情

  • 我想强制设置我的 <a> 的所有文本颜色与众不同。
  • 由于某些原因,它不会生效。

我尝试过的

<ul id="sticky" class="sticklr">
<?php foreach(array_unique(array_values($continent)) as $continent_id){
if($continent_id == 1 ){ $continent_name = "Europe" ; $continent_code = "EU" ;
}elseif ($continent_id == 2 ){ $continent_name = "Asia" ; $continent_code = "AS" ;
}elseif ($continent_id == 3 ){ $continent_name = "North America" ; $continent_code = "NA" ;
}elseif ($continent_id == 4 ){ $continent_name = "Oceania" ; $continent_code = "OC" ;
}elseif ($continent_id == 5 ){ $continent_name = "South America" ; $continent_code = "SA" ;
}else{ $continent_name = "Africa" ; $continent_code = "AF" ; } ?>
<li>
<a href="#<?php echo $continent_name ?>" class="sticky-<?php echo $continent_code ?>">
<?php echo $continent_name ?> | <?php echo $continent_code ?>
</a>
</li>
<?php }?>
</ul>
  • 注意:路径是这样的:

    .sticklr > li > a .sticky- continent_code { //CSS代码; }

CSS

.sticklr > li > a .sticky-AS{

color: orange !important;
text-decoration: none !important;
}
.sticklr > li > a .sticky-EU{

color: #50c0de !important;
text-decoration: none !important;
}
.sticklr > li > a .sticky-NA{

color: red !important;
text-decoration: none !important;
}
.sticklr > li > a .sticky-OC{

color: #428bca !important;
text-decoration: none !important;
}
.sticklr > li > a .sticky-SA{

color: #5cb85c !important;
text-decoration: none !important;
}
.sticklr > li > a .sticky-AF{

color: silver !important;
text-decoration: none !important;
}

结果

enter image description here

最佳答案

关于css - 如何强制将我的 `<a>` 的所有文本颜色设置为不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27844301/

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