SOURCE

console 命令行工具 X clear

                    
>
console
<!doctype html>
<html>

<head>
	<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
	<title>有序列表类型</title>
</head>

<body>
	<ol type=“1”>
		<li>北京</li>
		<li>上海</li>
		<li>广州</li>
		<li>深圳</li>
	</ol>
	<ol type="A">
		<li>北京</li>
        <li>上海</li>
        <li>广州</li>
        <li>深圳</li>
	</ol>
    <ol type="a">
        <li>北京</li>
        <li>上海</li>
        <li>广州</li>
        <li>深圳</li>
    </ol>
    <ol type="I">
        <li>北京</li>
        <li>上海</li>
        <li>广州</li>
        <li>深圳</li>
    </ol>
</body>
</html>