单选按钮奇怪的"额外"点在一边

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&ouml;r det g&auml;rna" id="group_1554315178_1" role="radio" class="ss-q-radio" aria-label="Ja, jag g&ouml;r det g&auml;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&auml;r g&aring;ngen" id="group_1554315178_2" role="radio" class="ss-q-radio" aria-label="Nej, inte den h&auml;r g&aring;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)

Ale*_*har 6

这是因为你使用列表.

The <ul> tag defines an unordered (bulleted) list.

将此添加到您的CSS:

ul{
    list-style-type: none;
}
Run Code Online (Sandbox Code Playgroud)

小提琴