CSS(Cascading Style Sheets)是一種用于描述網頁內容展示方式的樣式表語言。為了讓CSS生效,必須將其嵌入HTML文檔中。這篇文章將介紹如何使用CSS來渲染網頁,以便讓網頁看起來更具吸引力和專業感。
首先,讓我們來看一個典型的HTML文檔的結構:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>My Website</title> </head> <body> <h1>Welcome to my website!</h1> <p>This is the homepage of my website.</p> </body> </html>在這個HTML文檔中,`<head>`標簽下的`<style>`標簽中可以添加CSS代碼。示例如下:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>My Website</title> <style> h1 { color: blue; font-family: Arial, sans-serif; } p { color: gray; font-size: 16px; line-height: 1.5; margin-bottom: 20px; } </style> </head> <body> <h1>Welcome to my website!</h1> <p>This is the homepage of my website.</p> </body> </html>在這個示例中,我們將`<h1>`元素的文字顏色設置為藍色,字體設置為Arial。同時我們將所有`<p>`元素的文字顏色設置為灰色,字體大小設置為16像素,行高設置為1.5,下邊距設置為20像素。 除了在`<head>`標簽中使用`<style>`標簽,我們還可以使用外部CSS文件來引用CSS。例如:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>My Website</title> <link rel="stylesheet" href="style.css"> </head> <body> <h1>Welcome to my website!</h1> <p>This is the homepage of my website.</p> </body> </html>在這個示例中,我們在`<head>`標簽中添加了`<link>`標簽,用于引用外部CSS文件`style.css`。該文件中的CSS代碼如下:
h1 { color: blue; font-family: Arial, sans-serif; } p { color: gray; font-size: 16px; line-height: 1.5; margin-bottom: 20px; }這樣我們就將CSS嵌入到HTML文檔中,使得網頁呈現的樣式更加優美。同時使用外部CSS文件還可以幫助我們更好地管理和維護樣式。
上一篇css怎么選擇相同屬性值
下一篇mysql提高性能的架構