html – 为什么text-align在colgroup中不起作用?

前端之家收集整理的这篇文章主要介绍了html – 为什么text-align在colgroup中不起作用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > using text-align center in colgroup3
这个XHTML 1.1有什么问题:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html><body><table>
  <colgroup>
    <col style="width: 10em; text-align: right;" />
    <col style="width: 10em;" />
  </colgroup>
  <tbody>
    <tr>
      <td>test1</td>
      <td>test2</td>
    </tr>
  </tbody>
</table></body></html>

问题是test1不对齐,因为它应该是对的.

解决方法

已经回答了 here.基本上text-align不适用于列.
原文链接:https://www.f2er.com/html/224386.html

猜你在找的HTML相关文章