HTML 基礎 Part 2
Style Attribute
style屬性可以更改 html 上顯示的樣式。
Syntax
property: CSS 中定義的 property
value: CSS 定義相對應property的value
Background Color
backgrond-color property設定 HTML element 的背景色
Text Color
color property 設定 HTML element的 text color
Fonts
font-family property 用來定義 HTML element 所使用的字體
Text Size
font-size property 定義 HTML element 的字體大小
Text Alignment
text-align property 定義 HTML element 的文字對齊方式
Text Formatting Element
HTML 中定義了一些特殊的Elements給 Text 使用,有以下這幾種:
- <b> - Bold text
- <strong> - Important text
- <i> - Italic text
- <em> - Emphasized text
- <mark> - Marked text
- <small> - Small text
- <delete> - Deleted text
- <ins> - Inserted text
- <sub> - Subscript text
- <sup> - Superscript text
b & strong
這兩個標籤在顯示上,並無差異都顯示為粗體字,差別在於 strong 在搜尋時會有較高的權重,而 b 只是一般的文字。
i & em
與上面有著一樣的相對關係, 顯示上都是斜體字,但 em 在搜尋上有較高的權重。
small
將文字縮小
mark
用來highlight文字
del
在文字上多了刪除線 text
ins
在文字上多了底線
sub
subscripted 將文字下標顯示
sup
superscripted 將文字上標顯示
Comment Tags
Syntax