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