输入和选择的大小(widthxheight)相同

时间:2010-12-30 10:23:20

标签: html css

如何创建输入[文本]并选择相同的高度和宽度。它在所有浏览器中都是一样的吗?

2 个答案:

答案 0 :(得分:2)

首先reset your css

input { border:1px solid #333; width:200px; height:30px;}
select { border:1px solid #333; width:200px; height:30px;}

答案 1 :(得分:2)

标记inputselect不会从正文中获取字体样式,您必须为它们设置相同的样式,例如:

input, select {font-family:sans-serif;}