How can I make the <th> on the right hand side align everything inside it to the right? I already have a class which applies to all my <th>
Do I need to add something like this?HTML Code:<thead> <tr> <th scope="col" class="twentyfive">STATUS</th> <th scope="col" class="twentyfive">VIEW</th> <th scope="col" class="twentyfive">DOWNLOAD</th> <th scope="col" class="twentyfive">TOTAL</th> </tr> </thead>
[css]
table.main thead tr th.twentyfive {
/*border: 1px solid #fff;*/
width: 25%;
}
table.main thead tr th.twentyfive.right {
/*border: 1px solid #fff;*/
width: 25%;
float: right;
}[/css]



Reply With Quote

Bookmarks