html - 如何缩短长网址
我有时会出现在我看来很长的网址,例如:
"https://www.google.de/#hl=de&sclient=psy-ab&q=break+long+url+css&oq=break+long+url+&gs_l=serp.1.1.0i30l4.3822.3822.0.5634.1.1.0.0.0.0.85.85.1.1.0.
问问题
16636 次
3 回答
7
<a href="full-url">short-url</a>
短 url 将显示在页面上,但链接将指向完整 url。
于 2012-08-04T20:48:29.353 回答
1
使用 URL Shortener,谷歌有一个你可以连接到的 Api
https://developers.google.com/url-shortener/v1/getting_started
于 2012-08-04T20:45:32.027 回答
0
您可以使用 CSS 属性将长文本 url 显示为短 试试这个...
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
max-width: 40%;
于 2021-03-15T05:40:39.947 回答
我有时会出现在我看来很长的网址,例如:
"https://www.google.de/#hl=de&sclient=psy-ab&q=break+long+url+css&oq=break+long+url+&gs_l=serp.1.1.0i30l4.3822.3822.0.5634.1.1.0.0.0.0.85.85.1.1.0.
问问题
16636 次
3 回答
7
<a href="full-url">short-url</a>
短 url 将显示在页面上,但链接将指向完整 url。
于 2012-08-04T20:48:29.353 回答
1
使用 URL Shortener,谷歌有一个你可以连接到的 Api
https://developers.google.com/url-shortener/v1/getting_started
于 2012-08-04T20:45:32.027 回答
0
您可以使用 CSS 属性将长文本 url 显示为短 试试这个...
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
max-width: 40%;
于 2021-03-15T05:40:39.947 回答