InterviewSolution
Saved Bookmarks
| 1. |
Which of the following property allows long words to be able to be broken and wrap onto the next line?(a) line-wrap(b) break-word(c) word-wrap(d) word-breakThe question was posed to me during an internship interview.My question is from CSS Miscellaneous Property topic in portion CSS Properties, Elements, Functions & Tables of CSS |
|
Answer» CORRECT answer is (c) word-wrap The explanation: This PROPERTY helps you break the words and wrap onto the NEXT line to PREVENT overflow of div. |
|