搜尋

首頁  >  問答  >  主體

如何截斷取得HTML表格中的錨點標籤文本

<p>我正在嘗試在一個元素的錨文本中截斷文字。我在我的錨標籤的樣式中加入了<code>overflow: hidden; text-overflow: ellipsis;</code>,但它仍然換行。這裡有一些可以重現的HTML:</p> <p><br />></p> <pre class="brush:html;toolbar:false;"> <頭> <標題>測試測試123 </頭> <正文>
<正文> </tbody> </表> ; </body> </html></pre> <p><br /></p> <p>它似乎不喜歡錨標籤文字上的50px寬度,我認為是列寬搞亂了它。 </p>
P粉547170972P粉547170972501 天前522

全部回覆(1)我來回復

  • P粉099145710

    P粉0991457102023-08-17 00:29:51

    如果你不想換行,可以加上 white-space:nowrap;
    如果你想設定 width,設定為 50px,而不是 50 px(不允許有空格);
    如果你想讓 width 生效,將你的 <a> 設定為區塊級元素,例如使用 display:inline-block

    #這裡是程式碼:

    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
    
    <head>
      <title>Test Test 123</title>
    </head>
    
    <body>
      <div style="width: 100%; padding-top: 1px;">
        <div class="contents" style="width: 512px; flex-shrink: 0; margin-left: auto; margin-right: auto; display: block;">
          <div class="contents-body" style="display: block; width: 512px;">
            <table style="width:50%; border-collapse: collapse; margin-left: auto; margin-right: auto;">
              <tbody>
                <tr style="justify-content:center;align-items:center;gap:56px;color:#848585">
                  <th style="padding-top:8px;padding-bottom: 10px; font-style:normal;font-weight:500;line-height:16px;letter-spacing:0.1px;text-align:left;width:25%">Column A</th>
                  <th style="padding-top:8px;padding-bottom: 10px; font-style:normal;font-weight:500;line-height:16px;letter-spacing:0.1px;text-align:left;width:25%">Column B</th>
                </tr>
                <tr>
                  <td rowspan="3" style="width:25%; padding-top:8px; padding-bottom:8px; text-align:left;font-size:14px;font-style:normal;font-weight:500;line-height:16px; letter-spacing:0.1px;">Entry A</td>
                  <td style="padding-top:8px; padding-bottom:8px; text-align:left;font-size:14px;font-style: normal;font-weight:400;line-height: 16px;letter-spacing:0.1px;text-decoration-line:underline;">
                    <a style="color:#E25323; overflow: hidden; text-overflow: ellipsis; display:inline-block; width: 50px; white-space:nowrap" href="https://localhost">ABC123ABC-ABC123ABC`</a>
                  </td>
                </tr>
              </tbody>
            </table>
          </div>
        </div>
      </div>
    </body>
    
    </html>

    回覆
    0
  • 取消回覆
  • <tr> 條目A ABC123ABC-ABC123ABC`</a> </td>