Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/37.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 引导-单选按钮显示为方框_Jquery_Css_Twitter Bootstrap - Fatal编程技术网

Jquery 引导-单选按钮显示为方框

Jquery 引导-单选按钮显示为方框,jquery,css,twitter-bootstrap,Jquery,Css,Twitter Bootstrap,我有一把小提琴 在小提琴中,单选按钮显示正确 <div class="element-radio" title="Do you want to float the text to the left, right, or not at all?"><h4 class="title" style="font-weight: bold;">Float (left, right or none)</h4> <div class="colum

我有一把小提琴

在小提琴中,单选按钮显示正确

<div class="element-radio" title="Do you want to float the text to the left, right, or not at all?"><h4 class="title" style="font-weight: bold;">Float (left, right or none)</h4>       
    <div class="column column3">
        <label>
            <input type="radio" name="radio" value="Left" />
                <span>Left</span>
        </label>
    </div>
    <span class="clearfix"></span>
    <div class="column column3">
        <label><input type="radio" name="radio" value="Right" />
            <span>Right</span>
        </label>
    </div>
    <span class="clearfix"></span>
    <div class="column column3">
        <label>
            <input type="radio" name="radio" value="None" />
                <span>None</span>
        </label>
    </div>
    <span class="clearfix"></span>
    </div>
Float(左、右或无)
左边
赖特
没有一个
然而,在我工作的网站上,单选按钮显示为小盒子,不可点击

这是我正在使用的引导CDN-

此外,这个网站可以在本地工作,但我一进入服务器就不能工作


想法

如果移除不透明度:0.01;在styles.css中的以下类中设置,浏览器将呈现单选按钮:

.formoid-metro-cyan input[type="checkbox"], .formoid-metro-cyan input[type="radio"] {
    z-index: 1;
    position: absolute;
    float: left;
    width: 1em;
    height: 1em;
    font-size: 1em;
    opacity: 0.01; /*delete this*/
    margin: 0px;
    cursor: pointer;
}

尝试加载此文件时,引用无效

file:///C:/Users/jnewnam/Documents/EDMC%20App%20Portal%20Redo/Formoid/html/logi‌​n_files/formoid1/formoid.ttf`

您正在sytle.css
中自定义广播框。formoid metro-cyan-input[type=checkbox],.formoid metro-cyan-input[type=radio]
明白了。你们都对,我已经修好了。谁先提出答案,谁就知道了。为什么被否决了?我显示了作品、小提琴等。请在HTML中修复此问题:
就是这样。已经修好了。谢谢你。我甚至不知道这是怎么发生的。昨天不是那样的。再次感谢!