補充: class與id 是在於 ID 選擇器在一個 HTML 文件中只能被使用一次,而 Class 選擇器在一個 HTML 文件中可以被使用多次;ID 選擇器可以被 Javascript 中的 GetElementByID 函數所運用,而 Class 選擇器無法被 Javascript 運用到。
css, javascript與HTML 搭配
1.css如何跟 HTML 搭配使用
(1).inline CSS
在html中加入style屬性,來撰寫CSS
1 2
<h1style="color:blue;">A Blue Heading</h1> <pstyle="color:red;">A red paragraph.</p>
ps:此方式不建議使用,會造成維護的困難
(2).internal CSS
在html檔案中,建立<style> </style>區塊
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!DOCTYPE html> <html> <head> <style> body {background-color: powderblue;} h1 {color: blue;} p {color: red;} </style> </head> <body>
<h1>This is a heading</h1> <p>This is a paragraph.</p>
</body> </html>
(3).external CSS
用link的方式,連結到另一個css檔案
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!DOCTYPE html> <html> <head> <linkrel="stylesheet"href="styles.css"> /*This example links to a style sheet located in the same folder as the current page*/ </head> <body>
<h1>This is a heading</h1> <p>This is a paragraph.</p>