本文介绍了如何在表格左侧溢出文字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个固定布局的桌子.溢出时,单元格的内容应从左侧而不是右侧剪辑.也就是说,如果TD的宽度小于文本的宽度,则下面的单元格应显示"67890"而不是"12345".

I have a table with fixed layout. On overflow, the contents of cells should clip from the left instead of the right. That is, if the width of the TD is less than the width of the text, the cell below should display "67890" instead of "12345".

这至少需要在IE7 +中运行.没有任何JavaScript,有没有办法在CSS中做到这一点?

This needs to work in IE7+ at minimum. Is there a way to do this in css without any JavaScript?

<table style="table-layout:fixed">
  <tr>
    <TD>
      12334567890
   </TD>
 </tr>
</table>

推荐答案

您可以使用:

direction:rtl;

这篇关于如何在表格左侧溢出文字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 11:57