How to right-align form input boxes?

前端 未结 8 651
野的像风
野的像风 2021-01-01 08:53

I have a seemingly easy problem to solve, but am struggling. How do I get these two inputs to align to the right of the form, without using the BR element ?

         


        
8条回答
  •  生来不讨喜
    2021-01-01 09:08

    To affect ONLY text type input boxes use the attribute selector

    input[type="text"]

    This way it will not affect other inputs and just text inputs.

    https://www.w3schools.com/css/css_attribute_selectors.asp

    example, use a div and give it an idea to refer to:

    #divEntry input[type="text"] {
    text-align: right;}
    

提交回复
热议问题