CSS選擇器(class/ID/後代/群組)

class選擇器
html
<body>
<div class="primary-box">
<h2>Primary Box</h2>
<p>Some text <em>in the box</em>.</p>
</div>

<div class="secondary-box">
<h2>Secondary Box</h2>
<p>Some text <em>in the box</em>.</p>
</div>
css
.primary-box{ }
.secondary-box{ }

ID選擇器
html
<div id="monkey">
<p>I am. a monkey.</p>
</div>

CSS
#monkey{ }

後代選擇器
CSS
.primary-box em {
font-style: italic;
color: #6fd6f5;
}
群組選擇器
CSS
.inner-box h3,.inner-box p{
font-size: 24px;
color: #b2acac;}

留言

這個網誌中的熱門文章

RWD響應設計--要點介紹

教你寫出神企劃:三星、首爾大學都在用的企劃力培養法--重點摘要

sketch基本操作