CSS word wrap property is used to break the long words and wrap onto the next line. This property is used to prevent overflow when an unbreakable string is too long to fit in the containing box.
CSS Word Wrap Values
Value | Description |
---|---|
normal | This property is used to break words only at allowed break points. |
break-word | It is used to break unbreakable words. |
initial | It is used to set this property to its default value. |
inherit | It inherits this property from its parent element. |
CSS Word Wrap Example
word-wrap: break-word;
}
</style>
</head>
<body>
<p class=“test”> In this paragraph, there is a very long word:
iamsooooooooooooooooooooooooooooooolongggggggggggggggg.The long word will break and wrap to the next line.</p>
</body>
</html>
Output:
In this paragraph,
there is a very long
word: iamsoooooo
ooooooooooooooo
oooooooooolong
ggggggggggggggg
.The long word will
break and wrap to
the next line.
Leave A Comment