css 表中出现意外的省略号/截断行为

gab6jxml  于 2022-12-01  发布在  其他
关注(0)|答案(1)|浏览(118)

我正在尝试截断表格中的某些文本,但是没有按预期的方式工作。有人能给我解释一下我做错了什么吗?
编辑:我想保持表格宽度为max-width: 100%;

<script src="https://cdn.tailwindcss.com"></script>

<div class="w-56 overflow-x-hidden">
  <div class="table max-w-full border-spacing-y-5 border border-red-200">
    <div class="table-row"> 
      <div class="table-cell whitespace-nowrap pr-5 border border-blue-200">
        This
      </div>
      <div class="table-cell pr-5 border border-green-200">
        is 
      </div>
      <div class="table-cell pr-5 border border-orange-200">
        the
      </div>
      <div class="table-cell border border-purple-200 overflow-y-hidden">
        <div class="flex">
          <span class="truncate">text to truncate</span>
        </div>
      </div>
    </div>
  </div>
</div>

<p>Expected Results:</p>

<div class="flex w-36">
  <span class="truncate">This is the text to truncate</span>
</div>
bd1hkmkf

bd1hkmkf1#

灵感来自this answer。这个问题的其他答案也可以帮助你理解所涉及的问题。你必须把我的vanilla CSS翻译成Tailwind。
第一个

相关问题