<optgroup>
<optgroup>標籤是定義select標籤中的選項分組的一種很好的方法。比如,你需要按時間來分組電影列表,那麼就可以這樣做
<label for="showtimes">上映時間</label>
<select id="showtimes" name="showtimes">
<optgroup label="下午一點"></optgroup>
<option value="titanic">泰坦尼克號</option>
<option value="nd">貧民窟的百萬富翁</option>
<option value="wab">怪物史瑞克</option>
<optgroup label="下午兩點"></optgroup>
<option value="bkrw">獅子王</option>
<option value="stf">全民超人</option> </select>
<acronym>
<acronym> 是一種定義或更多解釋一組文字的方法。當你用鼠標放到使用<acronym>標籤的文字時,一個顯示title標籤的內容的框框將會出現在下邊。比如:
微博客網站<acronym title="Founded in 2006"> Twitter</acronym> 最近常常宕機
<ins> 和<del>
如果你想使用標籤來顯示編輯版本,<ins> 和<del> 正好適合。顧名思義,<ins> 用下劃線高亮顯示添加進來的內容,而<del> 用刪除線顯示被移除的信息。
John <del>likes</del> <ins>LOVES</ins> his new iPod.
<fieldset>
Fieldset是一個小巧的標籤,你可以用來為你的表單元素添加邏輯分組。<fieldset>標籤就會在其內部的元素周圍畫一個框。另外一點就是可以在fieldset裡面添加<label> 標籤來定義分組的標題。
<form><fieldset>
<legend>你比5年紀學生聰明嗎?</legend>
當然<input name="yes" type="radio" value="yes" />
不知道<input name="no" type="radio" value="no" />
</fieldset>
</form>
資料來源:http://www.wowbox.com.tw/blog/article.asp?id=3278
http://stingtao.info/?page_id=2
回覆刪除http://www.inside.com.tw/
回覆刪除