Hello,
I am attempting to set up a very basic (to some) pricing tier if you will. What I am trying to accomplish in Dreamweaver:
I can not seem for the life of me to adequtly create jusitifed text were the (...) will evenly space everything out into a block of text like the image example above. Any help would be greatly apprecaited!
If any further info is needed on my end, please let me know.
1. Use a 2-column table for this.
2. Make a background image for the left cell that is just the dots (have 3 or 4 of them on the image)
3. Have your CSS specify that image as a background image for the cell that tiles horizontally and use the background-position style to adjust its vertical location so that the repeat is inline with the rest of the content
4. Put your price into the right column and make it right aligned with CSS
That should do the trick.
Your CSS would be something like this -
table.prices td { background-image:url(images/dots.png);background-repeat:repeat-x;widt h:300px; }
table.prices td + td { background-image:none;width:75px;text-align:right; }
/* this removes the dots from the 2nd column cells */
Your HTML would be something like this -
<table class="prices">
<tr>
<td>Nenita</td>
<td>$6.75</td>
</tr>
...
</table>
North America
Europe, Middle East and Africa
Asia Pacific