Questions tagged «border-box»

4
如何获得相等的输入宽度和选择字段
在表单上,​​我有一个select和两个输入字段。这些元素垂直对齐。不幸的是,我无法获得这些元素的相等宽度。 这是我的代码: <select name="name1" style="width:198px"> <option>value1</option> <option>value2</option> </select><br/> <input type="text" name="id1" style="width:193px"><br/> <input type="text" name="id2" style="width:193px"> 对于上面的示例,选择元素的最佳宽度是198或199像素(当然,我尝试了193像素,但差异很大)。我认为,这取决于分辨率,取决于各种计算机和浏览器,因为这些元素的宽度不同(有时我认为差异约为1或2像素)。我试图在div或表行中设置这些元素,但这无济于事。 问:如何获得这些元素的宽度完全相等?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.