HTML全局屬性類

2018-01-05 13:58 更新

HTML全局屬性類


class屬性設置類。 我們通常使用類來對元素進行分組。

然后我們可以定位屬于給定類的元素并應用CSS樣式。

句法

<element class="classname">

屬性值

classname
one or more class names for an element.

瀏覽器兼容性

class Yes Yes Yes Yes Yes


例子

<!DOCTYPE HTML>
<html>
    <body>
        <a class="class1  class2"  rel="external nofollow" target="_blank" >Apress web site</a>
        <p/>
        <a class="class2 otherclass"  rel="external nofollow" target="_blank"  rel="external nofollow" target="_blank"  rel="external nofollow" target="_blank" >W3C web site</a>
    </body>
</html>



實施例2

您可以通過使用空格分隔類名稱來對每個元素應用多個類。

在下面的代碼中,我們創(chuàng)建了一個針對一個或多個類的樣式。

<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
.class2  {
   background-color:grey; color:white; padding:5px; margin:2px;
}
.class1  {
   font-size:x-large;
}
</style>
</head>
<body>
    <a class="class1  class2" href="http://m.hgci.cn">web site</a>
    <p/>
    <a class="class2 otherclass"  rel="external nofollow" target="_blank"  rel="external nofollow" target="_blank"  rel="external nofollow" target="_blank" >W3C web site</a>
</body>
</html>

Click to view the demo

實施例3

另一種使用類屬性的方法是在腳本中。

<!DOCTYPE HTML>
<html>
<body>
<a class="class1  class2" href="http://m.hgci.cn">web site</a>
<br/>
<a class="class2 otherclass"  rel="external nofollow" target="_blank"  rel="external nofollow" target="_blank"  rel="external nofollow" target="_blank" >W3C web site</a>
<script type="text/javascript">
var  elems  = document.getElementsByClassName("otherclass");
for (i = 0; i < elems.length; i++)   {
   var  x  = elems[i];
   x.style.border = "thin solid black"; 
   x.style.backgroundColor = "white"; 
   x.style.color = "black";
}
</script>
</body>
</html>

Click to view the demo

上面的腳本查找所有的元素已分配給 otherclass 類并應用一些樣式。

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號