您好,登錄后才能下訂單哦!
小編給大家分享一下CSS屬性選擇器指的是什么,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
CSS屬性選擇器
<meta charset="UTF-8">
<title>Title</title>
<style>
.demo a{
float: left;
display: block;
height: 50px;
width: 50px;
text-align: center;
border-radius: 10px;
background-color: aqua;
color: blue;
text-decoration: none;
margin-right: 10px;
font: bold 20px/50px Arial;
}
/*選中a標簽里面帶有id屬性的元素 語法 : a[屬性名或者屬性名=屬性值]{}
這里面的 = 表示絕對等于
*= 包含這個元素
^= 表示以什么開頭
$= 表示以什么結尾
*/
/*a[id]{
background-color: yellow;
}*/
/* a[id=first]{
background-color: #e51010;
}*/
/*選中class中含有links的元素*/
/*a[class*="links"]{
background-color: yellow;
}*/
/*選中href中以http開頭的元素*/
/*a[href^=http]{
background-color: yellow;
}*/
/*選中href中以pdf結尾的元素*/
a[href$=pdf]{
background-color: yellow;
}
</style>
<p class="demo">
<a href="https://www.baidu.com" class="links item first" id="first">1</a>
<a href="https:" class="links item first" target="_blank" title="test">2</a>
<a href="image/123.html" class="links item">3</a>
<a href="image/123.png" class="links item">4</a>
<a href="image/123.jpg" class="links item">5</a>
<a href="abc" class="links item">6</a>
<a href="abc/a.pdf" class="links item">7</a>
<a href="/ad.pdf" class="links item">8</a>
<a href="abd.doc" class="links item">9</a>
<a href="djw.doc" class="links item last">10</a>
</p>
以上是“CSS屬性選擇器指的是什么”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。