Files
freeCodeCamp/guide/chinese/css/selectors/attribute/star/index.md
2018-10-16 21:32:40 +05:30

305 B
Raw Blame History

title, localeTitle
title localeTitle
Star

Star CSS属性选择器或*用于选择包含特定值的属性。

如果要在URL值中的任何位置搜索包含“代码”的所有锚链接并将其设为黄色则可以这样执行

a[href*="code"] { 
   color: yellow; 
 }