是否有一种简洁的方式来设置以下样式:
<ol>
<li>How many licks to get to the center?
<ol style="list-style-type: lower-alpha;">
<li><input id="q1a" type="radio" name="q1" value="1" />
<label for="q1a">One</label></li>
<li><input id="q1b" type="radio" name="q1" value="2" />
<label for="q1b">Two-hoo</label></li>
<li><input id="q1c" type="radio" name="q1" value="3" />
<label for="q1c">Three</label></li>
</ol>
</li>
</ol>
所以嵌套ol
输出中的答案与标记左侧的单选气泡?
() a. One
() b. Two-hoo
() c. Three
到目前为止,我看到的所有答案要么需要作弊(辅助标记),要么来自 5 年前,要么需要定位输入,position: absolute
如果我知道它们会可靠地与标记对齐并且我不会反对根据物品的长度,不会看起来像垃圾。
这是用 css3 或 html5 直接或间接解决的吗?