Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我上面的单选按钮包裹了标签,但没有正确对齐。它应该在顶部的第一个文本下方对齐。是否有我必须设置的配置才能正确包装标签。
我很确定没有配置可以做到这一点。唯一合理的方法是摆弄 CSS -如何对齐复选框及其标签一致地跨浏览器
+在当前版本(4.2.1.)中,有一个错误,它将整个标签文本包装在收音机下(见这里)。
通过查看 ExtJS 6 实现的内容。你可以在 ExtJS 4.2.1 上使用这个 CSS 覆盖:
.x-form-cb-label-after { display: inline-block; padding-left: 17px; margin: 4px 0 0 0; } .x-form-cb { margin-top: 5px; position: absolute; }
并做到这一点: