修复混乱的 CSS 以显示标签旁边的复选框

发布于 2024-11-09 20:27:12 字数 257 浏览 0 评论 0原文

我似乎无法修复我的应用程序中的 CSS 问题,该问题可能有太多混乱的 CSS。

为了隔离问题,我将部分问题放在 jsbin 上: http://jsbin.com/asoye3/2 /

它包括我的应用程序使用的所有 CSS。

问题是复选框作为一组显示在页面右侧,而不是显示在每个标签旁边。我尝试使用 firebug 但似乎无法隔离这个问题。

I can't seem to fix a css issue in my app that maybe has too much jumbled up css.

To isolate the problem I've put partial of the problem on jsbin: http://jsbin.com/asoye3/2/

It includes all the CSS that my app uses.

Problem is that the checkboxes are showing as a group on the right side of the page rather than being next to each label. I tried using firebug but can't seem to isolate this issue.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

叫嚣ゝ 2024-11-16 20:27:12

我将其添加到您的 firebug 页面中,它似乎有效......

 <style type="text/css">span {width:20%; float:left;}</style>

I added this to your page in firebug and it seemed to work...

 <style type="text/css">span {width:20%; float:left;}</style>
醉梦枕江山 2024-11-16 20:27:12

问题是所有标签都有 float: left 而复选框没有。只需从标签中删除 float: left 即可。

The problem is all labels have float: left and the checkboxes don't. Just remove the float: left from the labels.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文