window Resize

html 測試 左入右出

html 測試 上入下出

html 測試 單入單出

html 測試 左單右單

tt
顯示具有 cck 標籤的文章。 顯示所有文章
顯示具有 cck 標籤的文章。 顯示所有文章

navigator.userAgent

navigator.userAgent

偶數與奇數規則 CSS :nth-child(even) :nth-child(odd)

偶數與奇數規則 CSS :nth-child(even) :nth-child(odd)

一種提高易於閱讀大型表格的方法是每,排以色調交替譬如,下面的 table 顯示淺灰色背景的 偶數排,以及白底的奇數排,這規則在此非常簡單。
table:nth-child(even) {background: #CCC}
table:nth-child(odd) {background: #FFF}
00







限制輸入字符

<input Text > 限制輸入格式 


<input Text > 限制輸入格式,指的就是在網頁的input text輸入文字時,依據特定格式,阻擋不合規格的文字 例如 : 純數字的 及 + - * / . 除了數字之外. HTML select option 下拉式選單範例。
00