jQuery更改标签和图标对齐?

时间:2012-11-06 11:55:53

标签: jquery css

对于jQuery复选框和标签,默认对齐方式如下:

[x] label

如何更改它们,以便标签在前面?使用firebug我没有找到任何对齐的声明。

1 个答案:

答案 0 :(得分:1)

只需将标签文本放在<input type = "checkbox"/>之前,以便您的代码如下所示:

<label for = "testCheckbox">Label</label> <input type = "checkbox" id = "testCheckbox" name = "testCheckBox"/>