Place input box at the center of div

后端 未结 5 1989
借酒劲吻你
借酒劲吻你 2020-12-08 09:59

I have a div, and I want the input box to be place at it\'s center. How can I do this?

5条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-08 10:18

    #the_div input {
      margin: 0 auto;
    }
    

    I'm not sure if this works in good ol' IE6, so you might have to do this instead.

    /* IE 6 (probably) */
    #the_div {
      text-align: center;
    }
    

提交回复
热议问题