CSS 基礎知識
Last updated
Last updated
行內樣式
內部頁面樣式
外部連結樣式
範圍
最小
頁中
許多頁
優先
最優先
用法
<標籤 style="CSS;">
<style type='text/css'>
CSS;
</style>
<link href="CSS檔.css" rel="stylesheet">
標籤挑選器
ID挑選器
類別挑選器
樣式表
p {CSS屬性: 值;}
#home{CSS屬性: 值;}
.row{CSS屬性: 值;}
網頁
<p></p>
<div id="home"></div>
<div class="row"></div>