修复混乱的 CSS 以显示标签旁边的复选框
我似乎无法修复我的应用程序中的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将其添加到您的 firebug 页面中,它似乎有效......
I added this to your page in firebug and it seemed to work...
问题是所有标签都有
float: left
而复选框没有。只需从标签中删除float: left
即可。The problem is all labels have
float: left
and the checkboxes don't. Just remove thefloat: left
from the labels.