HTML中的start屬性用於指定為單個列表項編號的起始值。它與有序列表一起使用。
用法:
<ol start = "value"> list items...</ol>
例:
<!DOCTYPE html>
<html>
<head>
<title>HTML start Attribute</title>
<style>
h1, h2 {
text-align:center;
}
</style>
</head>
<body>
<h2 style = "color:green;">
HTML start Attribute
</h2>
<p>Sorting Algorithms</p>
<ol start="7">
<li>Bubble sort</li>
<li>Merge sort</li>
<li>Quick sort</li>
</ol>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了start屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- CSS border-start-start-radius屬性用法及代碼示例
- HTML <ol> start屬性用法及代碼示例
- HTML marker-start屬性用法及代碼示例
- HTML Ol start用法及代碼示例
- HTML <html> xmlns屬性用法及代碼示例
- CSS border-inline-start-style屬性用法及代碼示例
- CSS grid-row-start用法及代碼示例
- CSS border-block-start-style屬性用法及代碼示例
- CSS border-block-start-color屬性用法及代碼示例
- CSS border-block-start-width屬性用法及代碼示例
- CSS border-block-start用法及代碼示例
- CSS margin-block-start用法及代碼示例
- CSS margin-inline-start用法及代碼示例
- CSS border-end-start-radius屬性用法及代碼示例
- CSS border-start-end-radius屬性用法及代碼示例
- CSS padding-inline-start用法及代碼示例
- CSS inset-inline-start用法及代碼示例
- CSS border-inline-start-width屬性用法及代碼示例
- CSS border-inline-start用法及代碼示例
- CSS border-inline-start-color屬性用法及代碼示例
- CSS padding-block-start用法及代碼示例
注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 HTML | start Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。