CSS

CSS: 匯入 CSS 樣式表

每次都會忘記要如何匯入,乾脆直接記下來XD

樣式表和首頁放一起href="styles.css"

├── style.css
└── index.html
<link rel="stylesheet" type="text/css" href="style.css">

樣式表放在資料夾中,要把路徑也加進去href="css/style.css"

├── css
|   └── style.css
└── index.html
<link rel="stylesheet" type="text/css" href="css/style.css">


順便也記一下其他加入CSS的方法。

  • 直接添加在HTML Tag中
<h1 style="text-align: center;">Title</h1>
  • 加在<head></head>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        h1 {
            text-align: center;
        }
    </style>
</head>
<body>
    <h1 style="text-align: center;">Title</h1>
</body>
</html>

留下一個回覆

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *