igor ferreira
igor ferreira

Reputation:

Margin left- px

Can I use any tag that will allow me to place a line <hr /> on a specific left margin size

Upvotes: 1

Views: 11141

Answers (2)

SvenFinke
SvenFinke

Reputation: 1254

I would prefer to use a div and add a border to that div. It's more flexible than the


tag. This would be a example for a solid line with a margin of 5 px to the top and bottom and 10px to the left and right:

<div style="border-top:1px solid #000;margin:5px 10px;"></div>

I haven't tested it but that should work fine :)

edit: i tested it with firebug and edited the code above.

Upvotes: 1

Colin
Colin

Reputation: 10638

Have you tried:

<hr style="margin-left:10px;" />

Upvotes: 4

Related Questions