Martin
Martin

Reputation: 351

Horizontal search button alignment in firefox

I'm stumped– I've tried everything and can't work out what's going on…

The search form at the foot of this site that I'm developing http://energybubble.net/ looks as I'd expect in Opera, Chrome and Safari, but when viewed in Firefox the search button in 1px or so higher than the search input. (I haven't done any IE testing yet, but I'll cross that bridge when I get there!) Help!

Upvotes: 0

Views: 86

Answers (1)

SVS
SVS

Reputation: 4275

Change css like this:

footer input {
 border: 2px solid #999;
 display: block;
 float: left;
 height: 40px;
}

Upvotes: 2

Related Questions