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

时间:2014-06-26 17:28:35

标签: html css html5 css3

我试图自定义一个Google表单,它自带的表单有2个单选按钮,但奇怪的是它们左侧有两个“点”,是否可以删除它们?

/这些点落在这里/ enter image description here

代码的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>

1 个答案:

答案 0 :(得分:6)

这是因为你使用list。

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

将此添加到您的css:

ul{
    list-style-type: none;
}

fiddle