CSS – text-overflow Property
The text-overflow property specifies how overflowed content should be displayed to the user (clipped, an ellipsis (…), or display a custom string).
The text-overflow property specifies how overflowed content should be displayed to the user (clipped, an ellipsis (…), or display a custom string).
The text-shadow property accepts a comma-separated list of shadows to be applied to the text.
The text-transform property controls how text is capitalized or not capitalized.
The unicode-bidi property is used together with the direction property to set or return whether the text should be overridden to support multiple languages.
The user-select property specifies whether or not the text of an element can be selected if you double-click on the text or hold/drag across it.
The word-break property specifies how words should break when reaching the end of a line.
The word-spacing property increases or decreases the white space between words, with negative values used to condense the space between the words.
The word-wrap property allows long words to be broken and wrapped onto the next line.
The writing-mode property specifies whether lines of text are written out horizontally or vertically.
The attr() function returns the value of an attribute of the selected element, and is sometimes used to show the value of the href attribute after a link.
The @font-face rule allows for the use of fonts other than “web-safe” fonts. A font name is defined for the font and then the custom font is pointed to it.
There may come a time when you have an HTML text link that needs to be temporarily disable for some reason (perhaps it’s auto-created by a CMS, but the page is not yet finished).
HTML pre tags are used to format text just as it is written, whitespace and all. However, you may want to allow long lines of text/code to wrap.
Placeholders are text shown inside a form field that suggests to the user the type of input requested. They can be hidden with CSS when the field has focus.
Replacing text is usually done on the server side or with JavaScript, but there may be times when replacing text using CSS is the only viable solution.
There are times where you may want/need to disable a text link or set of links on your sites temporarily using jQuery.