以下是以前學(xué)習(xí)html時候總結(jié)的一些短語和方法,包括一些html使用技巧,希望大家認(rèn)真閱讀后有所幫助。
a:link {font-size:12px;color:red;text-decoration:none;font-style:italic}
a:link {font-size:14px;color:red;font-weight:normal;text-decoration:underline;font-style:normal}
a:link {font-size:12px;font-family:華文行楷;font-weight:bolder;color:red;text-decoration:overline}
style="writing-mode:tb-rl"
style="writing-mode:lr-tb"
調(diào)用css
favicon
text-decoration:none
text-decoration:overline
text-decoration:underline
text-underline-position:above/below(IE專有屬性)
text-decoration:line-through
text-transform:uppercase/lowercase/capitalize
font-size:大小
font-family:字體
font-style:normal/italic
font-weight:normal/bold/bolder/lighter
line-height:120%
writing-mode:tb-rl/lr-tb
text-indent:?px
綜合 font:樣式 變形 加粗 字號/行高 字體
example----font:italic bold 12px/120% 華文行楷
定義 調(diào)用
.css1 {} class=css1
#css2 {} id=css2
table {} 說明table 中的所有屬性
table#css1 {} table中的所有css1都有這個屬性 id=css1
table.css1 {} table中的所有css1都有這個屬性 class=css1
body,table,input {} table和body和input都有這個屬性
table #css1 table中其他標(biāo)簽擁有的屬性
...table .css1 table中其他標(biāo)簽擁有的屬性