Place input box at the center of div

后端 未结 5 1995
借酒劲吻你
借酒劲吻你 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

    #input_box {
        margin: 0 auto;
        text-align: left;
    }
    #div {
        text-align: center;
    }
    
    

    or you could do it using padding, but this is not that great of an idea.

提交回复
热议问题