开发者

Styling bug that switched form field orders

开发者 https://www.devze.com 2023-02-09 23:43 出处:网络
I have had the same login form and create_profile form for a long time.Yesterday some style changes were made on the site and today to my amazement, these two forms have fields reversed.

I have had the same login form and create_profile form for a long time. Yesterday some style changes were made on the site and today to my amazement, these two forms have fields reversed.

Here is the example of what I am talking about: http:开发者_如何转开发//www.hikingsanfrancisco.com/create_profile.php

I am not very knowledgeable in CSS issues, and I have never seen something like this. Any idea what may be causing this?

Thanks, Alex


label span has been floated right in your CSS:

label span {
  float: right;
  width: 15em;
}

Change it to:

label span {
  float: left;
  width: 15em;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消