use*_*918 1 html css html5 css3
我试图自定义一个谷歌表格,它自己的形式有2个单选按钮,但奇怪的是,他们左侧有两个"点",是否可以删除它们?
/这些点落在这里/

代码的snipet看起来像这样:
<ul class="ss-choices" role="radiogroup" style="text-align:center" aria-label="Kan du tänkta dig att hålla en unconference session? "><li class="ss-choice-item"><label><span class="ss-choice-item-control goog-inline-block" style="text-align:center"><input type="radio" name="entry.1554315178" value="Ja, jag gör det gärna" id="group_1554315178_1" role="radio" class="ss-q-radio" aria-label="Ja, jag gör det gärna" required="" aria-required="true"></span>
<span class="ss-choice-label" style="text-align:center">Ja, jag gör det gärna</span>
</label></li> <li class="ss-choice-item"><label><span class="ss-choice-item-control goog-inline-block" style="text-align:center"><input type="radio" name="entry.1554315178" value="Nej, inte den här gången" id="group_1554315178_2" role="radio" class="ss-q-radio" aria-label="Nej, inte den här gången" required="" aria-required="true"></span>
<span class="ss-choice-label">Nej, inte den här gången</span>
</label></li></ul>
Run Code Online (Sandbox Code Playgroud)
这是因为你使用列表.
The <ul> tag defines an unordered (bulleted) list.
将此添加到您的CSS:
ul{
list-style-type: none;
}
Run Code Online (Sandbox Code Playgroud)