0

我需要设置输入类型复选框右侧填充10pxborder-right:1px solid #000. 我正在尝试这个,但复选框没有取值。

4

4 回答 4

1
input[type="checkbox"]{
   border-right:1px solid #000;
   padding-right:10px;
}
于 2012-07-10T11:09:46.537 回答
0

You can't restyle the appearance of a check box. its fixed in the browser like radio buttons.

you could try http://www.no-margin-for-errors.com/projects/prettycheckboxes/.

于 2012-07-10T11:13:25.737 回答
0

阅读以下内容:http
://www.456bereastreet.com/lab/styling-form-controls-revisited/checkbox/这应该会给您以不同方式设置复选框样式的答案。

于 2012-07-10T11:13:31.160 回答
0

Padding在元素内部,如果您想要 10px 右侧间距,请改用margin-right

input[type="checkbox"]{
   border-right:1px solid #000; // dont know what use is this to the OP
   margin-right:10px;
}
于 2012-07-10T11:14:36.863 回答