Thread: <HR> Styling
View Single Post
  #7 (permalink)  
Old Jul 31st, 2007, 14:26
karinne's Avatar
karinne karinne is offline
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: <HR> Styling

Quote:
Originally Posted by RZX Developer View Post
with the css style will it just work everytime i use the tag <hr> ?
Yes ... when you code your css like this

Quote:
Originally Posted by crackafaza View Post
hr {
border: 0;
width: 80%;

}
this applies to every hr element you use in your document.

Same thing as if you were doing

Code: Select all
h1 {
   color: #900;
}
and so on
Reply With Quote