gpt4 book ai didi

css - 如何使用 CSS3 修剪长链接?

转载 作者:太空宇宙 更新时间:2023-11-04 04:23:20 24 4
gpt4 key购买 nike

在处理修剪长链接时,我们必须在服务器端做额外的工作,例如检查字符串长度,如果太长则添加省略号,但我们可以使用 CSS3 轻松完成。

最佳答案

这里是如何做到这一点的答案:

/* Only links with "href" attribute */
a[href] {
/* Add ellipsis at the end if text does not fit in given width */
text-overflow: ellipsis;
/* Have to add this line to make upper line work */
overflow: hidden;
/* Decide what is the longest link width in given units (px, em, rem etc.) */
max-width: 300px;
/* Element has to be inline-block to have width and fit inline in the same time */
display: inline-block;
/* We want to have all the link in one line without wrapping */
white-space: nowrap;
}

关于css - 如何使用 CSS3 修剪长链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18718881/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com