<select>元素比休息时间短一点</select>

时间:2011-03-07 17:38:58

标签: html css

所以我设置了输入,textarea并选择了elecentnts宽度为97%。一切都很好,但选择元素总是比休息时短一些。查看图片截图。 enter image description here

如何解决这个问题? :)

Okey我通过为select元素添加额外的边距来修复它,这里是css。

#cat_add_form input[type="text"], #edtCatDescr, select, .fileUpload
{
    background-color: #ffffff;
    width: 97%;
    padding: 4px;
    margin-bottom: 6px;
    font-size: 16px;
    border: 1px solid #dfdfdf;
    display: block;


    /* CSS 3 */
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

#cat_add_form select
{
    margin-left: 10px;
}

2 个答案:

答案 0 :(得分:1)

使用box-sizing: border-box

这适用于现代浏览器和IE8 +。

Live Demo or 97% version,修改自@Myles Gray的演示。

See here for more details.

For a way that works in IE7, see here.

答案 1 :(得分:0)

select {
    width:98%;
}

只需使用值,直到它看起来不错,

<强> Demo

您测试过哪些浏览器?