How to set up fixed width for ?

Simple scheme: <tr class=”something”> <td>A</td> <td>B</td> <td>C</td> <td>D</td> </tr> I need to set up a fixed width for <td>. I’ve tried: tr.something { td { width: 90px; } } Also td.something { width: 90px; } for <td class=”something”>B</td> And even <td style=”width: 90px;”>B</td> But the width of <td> is still the same. 23 s 23 … Read more