• 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.

cascade style sheet question

dasoldier

Limp Gawd
Joined
Apr 29, 2005
Messages
185
I know this is simple but I just can't seem to get it working for some reason. I wasnt to be able to apply a horizontal rule and specify the settings for it in a style sheet.

cascade sheet
.hrsetting
{
width="25%"
}

html
<span class="hrsetting"><hr /></span>

should that not make a horizontal rule with a width of 25%?
 
Code:
.hrsetting {
width: 25%;
}
Code:
<hr class="hrsetting"/>

Let's not get too complicated here.
 
Back
Top