1. 程式人生 > >HTML 樣式

HTML 樣式

http class rda yellow 例子 col html enter ali

HTML 元素默認是沒有什麽樣式的,只是單純的純文本的樣子,我們可以用 style 屬性來改變 HTML 元素的樣式

style="background-color:yellow"    # 用於定義背景顏色
style="font-family:微軟雅黑"        # 用於定義字體
style="color:red"                  # 用於定義字體顏色
style="font-size:20px"             # 用於定義字體大小
style="text-align:center"
# 用於定義水平對齊方式

如下例子:

<html>

<body>
<h1 style="
font-family:verdana">A heading</h1> <p style="font-family:arial;color:red;font-size:20px;">A paragraph.</p> </body> </html>

結果:

技術分享圖片

HTML 樣式