style{
.img img[alt]{
width: 200px;
height: 200px;
}
<img src="img1.jpg" alt="im img1">
<div class="img">
<img src="img2.jpg" alt="im img2">
<img src="img3.jpg" >
</div>
這樣如此就只有img2會被設定為固定大小
<table>
<thead>
<tr>
<th></th>
<th>名字</th>
<th>物品</th>
<th>費用</th>
</tr>
</thead>
<tbody>
<tr>
<th>1月</th>
<td>A</td>
<td>海報紙</td>
<td>$250</td>
</tr>
<tr>
<th>2月</th>
<td>B</td>
<td>影印費</td>
<td>$100</td>
</tr>
<tr>
<th>3月</th>
<td>C</td>
<td>拖把</td>
<td>$250</td>
</tr>
<tr>
<th>4月</th>
<td>D</td>
<td>網路線</td>
<td>$550</td>
</tr>
</tbody>
</table>
:link 向未被訪問的連結添加樣式。
:visited 向已被訪問的連結添加樣式。
:hover 當鼠標移到元素上方時,向元素添加樣式。
:active 滑鼠按下的樣式
:focus 選擇具有焦點的元素 (接受鍵盤事件或其他用戶輸入的元素)
<div>
<p>One</p>
<div>Two</div>
<p>Three</p>
</div>
<div>
<div>Four</div>
<div><p>Five</p></div>
<p>Six</p>
<p>Seven</p>
</div>
若是 div + p{} 則影響到的範圍是 three, six
若是 div ~ p{} 則影響到的範圍是 three, six, seven