如何更改输入框的大小?

时间:2012-06-24 02:05:26

标签: html css checkbox textbox

我正在使用这个css文件,但有一件令我讨厌的事情是css文件使输入变得有点大。

http://jsfiddle.net/fcfku/并点击“显示高级选项”。

如何设置尺寸?对于复选框(对于TOS),如何更改检查图像?

1 个答案:

答案 0 :(得分:1)

必须调整以下规则:

input, textarea, select {
    /*line-height*/
    font: 12px/1.5 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    /*possibly excessive padding*/
    padding: 5px 10px;
}

input, select {
    /*height applied to too many elements*/
    height: 30px;
}

此外,css重置应首先应用 ,即在任何其他规则之前