1.

What is word-break property used in CSS3?

Answer»

In CSS3, the word-break property is USED to SPECIFY how words should break when reaching the END of a line. The syntax for the word-break property is as follows:

Example

p.a {
   word-break: break-all;
}



Discussion

No Comment Found