CSS word-wrap Property

You are Here:

CSS word-wrap Property

CSS word-wrap property allows long words to be able to be broken and wrap onto the next line.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border: 1px solid black; width: 150px; height: 100px; margin-bottom: 10px; } #point{ word-wrap: normal; } #point1{ word-wrap: break-word; } </style> </head> <body> <h1>CSS word-wrap Property</h1> <div id="point"> This text will break to next line WhenWordWrapBreakWordIsUsed. </div> <div id="point1"> This text will break to next line WhenWordWrapBreakWordIsUsed. </div> </body> </html>

Syntax

Using CSS

element{ word-wrap: break-word; }

Using Javascript

object.style.wordWrap="break-word";

Animatable

No, word-wrap property is not animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS word-wrap property is normal.

Property Value

The following table provides a list of values for CSS word-wrap property.

ValueExplanation
normalAllows only breakable words to be broken.
break-wordAllows both breakable and unbreakable words to be broken.

Using JavaScript

In the following example, we will demonstrate how to change the CSS word-wrap property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border: 1px solid black; width: 150px; height: 100px; margin-bottom: 10px; } </style> </head> <body> <h1>CSS word-wrap Property</h1> <div> This text will break to next line WhenWordWrapBreakWordIsUsed. </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("div")[0]; function myFunction(){ x.style.wordWrap = "break-word"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author