This CSS reference page displays example code that shows how to style tags to create different types of word wrapping.
<!DOCTYPE html> <html> <head> <title>XoaX.net's CSS</title> </head> <body> <h3>Default Pre Tag equivalent to White-Space:Pre</h3> <pre style="width:200px;height:70px;background-color:#E0E080;border:1px solid black;"> Genesis In the beginning God created heaven, and earth.</pre> <h3>White-Space:Normal</h3> <pre style="width:200px;height:70px;background-color:#E0E080;border:1px solid black; white-space:normal;"> Genesis In the beginning God created heaven, and earth.</pre> <h3>White-Space:Normal</h3> <pre style="width:200px;height:70px;background-color:#E0E080;border:1px solid black; white-space:normal;"> Genesis InthebeginningGodcreatedheaven,andearth.</pre> <h3>Word-Wrap:Break-Word</h3> <pre style="width:200px;height:70px;background-color:#E0E080;border:1px solid black; word-wrap:break-word;"> Genesis InthebeginningGodcreatedheaven,andearth.</pre> <h3>Word-Wrap:Break-Word and White-Space:Normal</h3> <pre style="width:200px;height:70px;background-color:#E0E080;border:1px solid black; white-space:normal;word-wrap:break-word;"> Genesis InthebeginningGodcreatedheaven,andearth.</pre> <h3>Word-Wrap:Break-Word and White-Space:Pre-wrap</h3> <pre style="width:200px;height:70px;background-color:#E0E080;border:1px solid black; white-space:pre-wrap;word-wrap:break-word;"> Genesis InthebeginningGodcreatedheaven,andearth.</pre> <h3>Word-Wrap:Break-Word and White-Space:Pre-line</h3> <pre style="width:200px;height:70px;background-color:#E0E080;border:1px solid black; white-space:pre-line;word-wrap:break-word;"> Genesis InthebeginningGodcreatedheaven,andearth.</pre> <h3>Word-Wrap:Break-Word and White-Space:Nowrap</h3> <pre style="width:200px;height:70px;background-color:#E0E080;border:1px solid black; white-space:nowrap;word-wrap:break-word;"> Genesis InthebeginningGodcreatedheaven,andearth.</pre> </body> </html>
Genesis In the beginning God created heaven, and earth.
Genesis In the beginning God created heaven, and earth.
Genesis InthebeginningGodcreatedheaven,andearth.
Genesis InthebeginningGodcreatedheaven,andearth.
Genesis InthebeginningGodcreatedheaven,andearth.
Genesis InthebeginningGodcreatedheaven,andearth.
Genesis InthebeginningGodcreatedheaven,andearth.
Genesis InthebeginningGodcreatedheaven,andearth.
© 20072025 XoaX.net LLC. All rights reserved.