How do I get my line break tag to work on my page? It is in the 'file info' section between the second row of text in that section and the third row of text. For some reason it is not appearing at all, but if you look at the source you will see I put it there. Could someone take a look and help me figure out why it isn't appearing? http://www.foreverplaying.com/script/games/game_blade.php Also, when I took a look the <hr/> tag, it seemed that alot of the styles were deprecated. Is there a new way to create line breaks or am I missing something? Thanks!
You've used the wrong css property to change its colour. Use "background-color" instead of "color". The hr tag's attributes are deprecated as all styling is to be done via css.
If you change <hr> coloruse Use "background-color" learn more about <hr> attributes see below link tutorials99.com
I use this for all my sites. Works in all IE,FF, etc. hr {color:#CCC;background-color:#CCC;height:1px;border:none; width: 96%; text-align: center;} Code (markup):