View Full Version : Cell text


tahimik
06-06-2003, 02:18 AM
Hey everyone. I'm trying to figure out how to align my text in the table CELL. It aligns to the left, but how do I get it to align equally on the right (i.e. it doesn't look uneven on the right side)? I put the CSS script I have for my table below. I just want the text inside the cell to look clean. Thanks for your help guys.

.table3
{
font-family: verdana, times new roman;
color:#;
font-size:11px;
text-align: left;
}

EmpTcaN
06-06-2003, 03:22 AM
what do you mean? I don't actually get wha you trying to ask
but if you trying to make everything align to the left inside a table, you put this:
<table><tr><td align=left>

if you are trying to make another cell to the left you will have to do the <td align=left> again
but usually it align to the left in default so even tough you don't put the align it should still go to the left

pb&j
06-06-2003, 06:42 AM
try this perhaps?

.table3
{
font-family: verdana, times new roman;
color:#;
font-size:11px;
text-align: justify;
}