- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想在两个单词的中间显示单选按钮,但它没有按预期工作。
fiddler : https://jsfiddle.net/ebwwvy6m/2/
HTML:
<label class="radio-inline">
Search by
<input type="radio" name="accountsearch" value="name">
Lastname, Firstname
</label>
<label class="radio-inline">
<input type="radio" name="accountsearch" value="email">
Email
</label>
问题:
单词“by”被隐藏在单选按钮下。
如果我将“搜索依据”文本移到标签之外,则文本和单选按钮不会对齐。
我该如何解决这个问题?我的偏好是没有自定义 CSS 的解决方案。
任何建议将不胜感激。
最佳答案
Bootstrap 规则为单选按钮提供了两种您可能不想要的样式:
.radio-inline input[type="radio"] {
position: absolute;
margin-left: -20px;
}
你可以用这个覆盖这些规则:
input[type=radio] {
position: relative !important;
margin-left: 0 !important;
}
关于html - Bootstrap : display radio button in center of words,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40273415/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!