I want to have five inline links with an approximate padding of :5px 8px 5px 8px; and fixed margin of :0px 2px 0px 2px; evenly distributed inline within a 412px width div
here is an example: http://www.branklin.com/questions/css_justified_links.php
|
I want to have five inline links with an approximate padding of :5px 8px 5px 8px; and fixed margin of :0px 2px 0px 2px; evenly distributed inline within a 412px width div here is an example: http://www.branklin.com/questions/css_justified_links.php |
|||
|
|
|
This is the closest I could get it... You need to add another div around the links, or they can't have padding/margins at the same time as being relatively sized. Unless your padding and margins are also relative %.
What happens here is that the The alternative is of course to set a fixed width to the links, taking into account the padding and margins and the max width, but you'd end up with a floating point pixel value, which isn't so nice. |
||||
|
|
|
the easiest way to do it with display property (table, table-row and table-cell). example: css:
and the html:
|
|||||
|
|