• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Simple HTML question about HR's

IBleedPurple

Weaksauce
Joined
Jun 5, 2002
Messages
95
Do any of you know a way to get Netscape to recognize color on an HR tag? I know you could cheat and do a div border or something like that, but this would be simpler and I have my HR's set at 75% anyway. Any of the tutorials I've read say that Netscape won't do the HR color but I'm hoping someone has a trick up their sleeve... anyone?
 
I certainly don't know of a way to pull it off with CSS. Best thing I can suggest is to drop in a <div> appropriately sized, I think that's what XHTML recommends anyway.

Also, what version of Netscape are we talking? 4.x or a Gecko engine?
 
Well, best I could come up with is this, bastardizing the hr tag via css:
Code:
hr{
	border:1px solid green;
}

Show as perfectly green hr on Firefox 0.9.

Can also just do it inline with <hr style="border: 1px solid green" />
 
Well, I came up with another solution. I made a 1px by 1px square graphic of the color I want, and then put that in place of the HR and use the width attribute to stretch it out to about 400 px wide. I don't get to do it as a percentage, but it still works.
 
Anarchonixx said:
Well, best I could come up with is this, bastardizing the hr tag via css:
Code:
hr{
	border:1px solid green;
}

Show as perfectly green hr on Firefox 0.9.

Can also just do it inline with <hr style="border: 1px solid green" />

Just ran it in NS6 out of curiosity and it works.

--KK
 
Back
Top