Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FireFox + CSS

Status
Not open for further replies.

daveask

Programmer
Joined
Aug 11, 2004
Messages
108
Location
GB
Hi Experts,

Have you tried FireFox? In FireFox, I found the borders of the input boxes lost using follows css:
input {BORDER-BOTTOM: 1px double inherit; BORDER-LEFT: 1px double inherit; BORDER-RIGHT: 1px double inherit; BORDER-TOP: 1px double inherit;}
I then use this in css:
input {}
all the borders came back.

Do you know why? Anything I am missing?

Thank you in advance.
 
So that I follow you properly...

You had:
input {border: settings;} (which incidentally could be changed to input {border: 1px double inherit;} ) in your CSS doc and it didn't work properly.

Then, you added:
input {} to your CSS document below it?

You could try specifying the actual border width, size, and color to see if that clears it up.
 
Hmm, maybe because it's kind of tough to have a double line that's only 1 pixel wide?

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top