dutch90 (AT) gmail (DOT) com wrote:
Quote:
Actually, I'm going to do a CSS layout now. |
*Sigh*. More problems. I'm trying to put together a simple login box
(something similar to
https://www.google.com/accounts/Login?continue=http://www.google.com/&hl=en).
I want the boxes for username and password to be flush along the left
side. "No problem", I say. "I'll use absolute positioning!".
So I try this code:
..loginField {
position: absolute;
left: 80px;
}
and I make both text fields class="loginField". This seems to work,
except now the bottom of my password box spills out over the
"border-style: solid;" of my div.login box.
"No problem", I say. "I'll use the width and heigh properties!".
So I get it looking quite nice. Keep in mind I use firefox. I load it
up in IE and it looks terrible. How can I accomplish this effect
without tables in both IE and FF?? If it works in one, it doesn't work
in the other. I wish windows would ship with FF instead of IE.
CSS (no, wait, internet explorer) makes a fool of me again :P