發表文章

目前顯示的是有「CSS」標籤的文章

[CSS]

CSS 全名為Cascading Style Sheets(階層樣式表) CSS 樣式表 h1 {   font-size: 26px;   line-height: 1.5;   letter-spacing: 1px; } p {   font-size: 13px;   line-height: 1.2;   letter-spacing: 1px; } CSS 用來設定網頁關於外觀的一切 如何為網頁加入CSS 方法 操作 方法一 外部連結 <head> < link rel="stylesheet" type="text/css" href="style.css"> </head> 方法二 內部連結 <head>   <style>     p{     font-size: 15px;     line-height: 1.5;    }   </style> ...