• Forum Moderator applications are now open! If you're interested in joining an active team of moderators for one of the biggest Pokémon forums on the internet, click here for info.

CSS Trouble

Status
Not open for further replies.

Water Pokémon Master

追放されたバカ
Joined
Jan 7, 2004
Messages
1,589
Reaction score
4
HTML: <HR width="96%" size="1" color="black">
CSS: hr {color: black; width: 96%; text-align: center; font-size: 1px;}

When I use my <hr> tag, it does not change into the specifications I defined in the CSS. What am I doing wrong?
 
Err, that's not how you modify HR.

More like this:
Code:
hr { border: 1px solid black; margin-left: 2%; margin-right: 2%; }
 
Status
Not open for further replies.
Back
Top Bottom