The CSS control text is omitted.
This property:Text-Overflow: Clip | ellipsis (default value: Clip)
Clip: it does not show the omitted mark (...), but simply crop it.
Ellipsis: when the object text overflows, the omission mark (...) is displayed (...)
It is worth noting that the object to use this property must have a width.
Certificate ---------------------------------------------------------------------------------------------------------------------------------------------
CSS controls automatic text wrapping in objects
This property:Word-wrap: Normal | break-word (default value: normal)
Normal: controls the line feed of continuous text.
Break-word: the content will wrap in the boundary. If necessary, the line feed (Word-break) also occurs.
Text wrap attribute in another objectWord-breakAndWord-wrap is different.(Good example address http://www.jb51.net/css/42578.html)
Compatible with wrap CSS of IE and ff. Recommended style: Word-wrap: Break-word; overflow: hidden;
No: Word-wrap: Break-word; Word-break: Break-all;
It is not: Word-wrap: Break-word; overflow: auto;