Liquid textfield width

前端 未结 2 977
走了就别回头了
走了就别回头了 2021-01-16 18:12

I have this fairly simple form:

2条回答
  •  终归单人心
    2021-01-16 18:24

    If you keep the default submit button styles its width will vary from one browser to the next. This also means that the text field's width you seek is a variable.

    • FF: 47px + 3px border
    • Chrome: 45px + 2px border
    • IE8: 63px + 8px padding + 3px border
    • IE7: 61px + 2px border

    There is no elegant way to do it, but you have the following options:

    • Use tables (Google is using tables for its search box).
    • Style both the input field and submit button (Not recommended).
    • Use a script (Not recommended).

提交回复
热议问题