No line break in long html link?

I know nobr tag is out of date, then how can I do this with another tag or css?

+3
source share
5 answers

use the following css property: white-space:nowrap;

+6
source

Try using non-breaking spaces to prevent text breaks:

 

You can also define violation behavior in CSS:

.nobr { white-space: nowrap; }
+2
source

div - , ... , , ,
<a href="http://a/long/address/">Link</a>

+1

: ( Chrome, Safari, Firefox)

a {
    word-break:break-all;
}
+1

CSS html

                            display: block;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            width: 200px;
0

Source: https://habr.com/ru/post/1721885/


All Articles