Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to align all td to center except a td with class

Tags:

html

css

php

For example i have these codes

<tr>
 <td class="foo">chuchu</td>
 <td>chuchu</td>
 <td>chuchu</td>
 <td>chuchu</td>
 <td>chuchu</td>
</tr>  

how can i align them to center except the td with class?

like image 839
John Bryan Calleja Avatar asked Dec 06 '25 14:12

John Bryan Calleja


1 Answers

You could try this. Based on your answer to my question in the comment section, I came up with a simpler solution:

.css

td{
    text-align:center;
}

.foo{
    text-align:left !important;
}
like image 145
Miggy Avatar answered Dec 08 '25 03:12

Miggy



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!