How to right-align form input boxes?

前端 未结 8 752
野的像风
野的像风 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:00

    Try use this:

    input {
      clear: both;
      float: right;
      margin-bottom: 10px;
      width: 100px;
    }
    

提交回复
热议问题