Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/40.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
引导和表单堆栈CSS冲突-单选按钮仅部分可见_Css_Bootstrap 4_Formstack - Fatal编程技术网

引导和表单堆栈CSS冲突-单选按钮仅部分可见

引导和表单堆栈CSS冲突-单选按钮仅部分可见,css,bootstrap-4,formstack,Css,Bootstrap 4,Formstack,将表单嵌入网站时,Bootstrap(4.1.3)和Formstack的CSS会发生冲突。单选按钮仅部分可见。问题出在“label”类(“fsOptionLabel”)中。更改行高确实有一点帮助,但是单选按钮不能与文本正确对齐。我的CSS知识有限,所以很抱歉我为这个愚蠢的问题道歉。我就是想不出来。。。有没有关于如何解决这个问题的建议?它是一个字段集(role=“group”),标签如下: <label class="fsOptionLabel vertical" for

将表单嵌入网站时,Bootstrap(4.1.3)和Formstack的CSS会发生冲突。单选按钮仅部分可见。问题出在“label”类(“fsOptionLabel”)中。更改行高确实有一点帮助,但是单选按钮不能与文本正确对齐。我的CSS知识有限,所以很抱歉我为这个愚蠢的问题道歉。我就是想不出来。。。有没有关于如何解决这个问题的建议?它是一个字段集(role=“group”),标签如下:

<label class="fsOptionLabel vertical" for="field78202961_1">
<input type="radio" id="field78202961_1" name="field78202961" 
value="Single" class="fsField fsRequired vertical" aria-
required="true">Single</label>

单身

来自Formstack的支持建议了以下解决方法:

.fsRowBody input[type="radio"], .fsRowBody input[type="checkbox"] {
top: 2px;
width: 25px;
height: 25px;
}

你能用这个问题创建一个代码段吗?