Matt Fielding wrote:
> I'm trying to make a custom <hr /> tag using a <div> styled as follows:
>
> http://mattu.isa-geek.com/index2.php
>
>   
Try (including the width as Ingo wrote) and:

css:
div#navbar  {
  width: 100px;    <<< add
}
replace the selector you have with this:
hr {
border: none 0;
border-top: 1px dashed red;
width: 95%;
height: 1px;
}
(I think hr's center by default )

html (simply)
<hr />

Regards,
~dL

-- 
http://chelseacreekstudio.com/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to