Menu
×
×
正确
<style>
ol {
@(15): @(11);
}
</style>
<body>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ol>
</body>
<style>
ol {
list-style-type: upper-roman;
}
</style>
<body>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Coca Cola</li>
</ol>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style> ol {w3exercise_input_no_0:w3exercise_input_no_1; } </style> <body> <ol> <li>Coffee</li> <li>Tea</li> <li>Coca Cola</li> </ol> </body> |