The picture below illustrates what I\'m trying to accomplish:
UPD. As you
To achieve that alignment, you should do something like this:
HTML:
12345
CSS:
.my_td
{
width: 200px;
align: center;
}
.content
{
width: 100px;
margin-left: auto;
margin-right: auto;
text-align: right;
}
You just need to adapt the widths to meet your requirements, for instance, max digits in the number.