有一段html**:
class="glyphicons white no-js cogwheel"
href="#"
target="_blank">
i>
a>
對應有css style:
.glyphicons
.white
i:before
.glyphicons
.white
:hover
i:before
那麼出現的效果是:
乙個圖示,齒輪是白的
當滑鼠移到齒輪時,齒輪變黃綠:
解釋一下這段css**給自己聽
/*當有元素同時包含 "glyphicons" 和 "white" class,並且擁有子元素的時候,在前面設定顏色為白色的style*/
.glyphicons
.white
i:before
/*當有元素同時包含 "glyphicons" 和 "white" class,並且擁有子元素的時候,當滑鼠懸停其上,則在前面設定顏色為#b6ff00(黃綠)的style*/
.glyphicons
.white
:hover
i:before
CSS的兩個class選擇器緊挨在一起
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!有一段html class glyphicons white no js cogwheel href target blank i a 對應有css style glyphicons white i before glyphicons white ...
CSS樣式,id選擇器和class選擇器
class和id的用法 上面的例子應用class和id實現了3種不同的標題1。下面我們就來講講class和id的具體應用規則。指定標籤的class和id 首先我們要在部分定義class 類 或id。class的定義方法 指定標籤.類名 id的定義方法 指定標籤 id名 然後我們在想要應用類的標籤上加...
css中id選擇器和class選擇器的區別?
id選擇器 id 選擇器可以為標有特定 id 的 html 元素指定特定的樣式。id 選擇器以 來定義。下面的兩個 id 選擇器,第乙個可以定義元素的顏色為紅色,第二個定義元素的顏色為綠色 red green 下面的 html 中,id 屬性為 red 的 p 元素顯示為紅色,而 id 屬性為 gr...