(英文全稱:Cascading Style Sheets)是一種用來表現HTML(標準通用標記語言的一個應用)或XML(標準通用標記語言的一個子集)等文件樣式的計算機語言。html
在咱們的 CSS 教程中,您會學到如何使用 CSS 同時控制多重網頁的樣式和佈局。佈局
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> .demo { background-color: #d0e4fe; padding: 10px; } .demo-h1 { color: orange; text-align: center; } .demo-p { font-size: 20px; } </style> </head> <body> <div class="demo"> <h1 class="demo-h1">這是水香木魚的 CSS教程</h1> <br/> <p class="demo-p">水香木魚的博客</p> </div> </body> </html>