html 拾遺之一
今天翻了下w3schools.com 把忘掉的語法記一下(僅經常使用可是不熟的部分)html
- img alt 屬性,當圖片沒法顯示時可顯示alt屬性的文字
- br 換行
- < html lang="en-US"> 語言聲明
- <p title="w3c"> some text </p> 當鼠標移動至文字上方時顯示title
- 建議使用屬性時加引號
- disabled
- 標題 Don't use headings to make text BIG or bold 這裏的意思是 h1等標籤僅表示結構,不可用於展現樣式
- <hr> 生成橫線
- Any number of spaces, and any number of new lines, count as only one space 在html中多餘的空格會被刪除,例如在<p>標籤內的段落中的多餘空格 空行均會被刪除
- 與上條不一樣,<pre> 中的內容會保存空格空行顯示
- q 引用,address cite 等 不經常使用
- code 代碼段,忽略空白 換行
- 註釋 <!-- -->
- link target屬性:
- _blank 新窗口或tab頁
- _self 默認值,在原框架中打開
- _parent 上級框架中打開
- _top 當前頁充滿body
- framename 在名爲framename的frame中打開
- link href="#tips" 跳到id="tips"元素行,彷佛有name="tips"的用法,教程上沒有,回頭看一下
- map, An image-map is an image with clickable areas.可定義不一樣area,本人極少用
- table 標題 caption
- ul 無序列表 ol有序列表
- ol 有type屬性可對序號進行設置
- 未完待續