CSS:
.one { width: 13%; } .two { width: 30%; } .three { width: 30%; }
HTML:
2条回答 北海茫月 (楼主) 2021-01-26 17:16 You can add this to your css: td.two, td.three { text-align:right; } You need the td prefix cause your th is using the same css class. I hope that helps. 0 讨论(0) 查看其它2个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
You can add this to your css:
td.two, td.three { text-align:right; }
You need the td prefix cause your th is using the same css class.
td
th
I hope that helps.