首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

在HTML对象上使用多个class Name

2012-08-15 
在HTML对象上应用多个class Name!DOCTYPE htmlhtmlheadtitleApplying multiple class names to an

在HTML对象上应用多个class Name

<!DOCTYPE html><html><head>    <title>Applying multiple class names to an object in HTML</title>    <style type="text/css">        .sty1 {            font-size: 2em;        }        .sty2 {            color: #f00;        }    </style></head><body>     <div class="sty1">Big</div>    <div class="sty2">Red</div>    <div class="sty1 sty2">Big and red</div> </body></html>
?

热点排行