Home >Web Front-end >CSS Tutorial >How to Make Table Cell Content Wrap in HTML?
In the provided code, the text in the
elements. This property enables word wrapping within the table cells, allowing long text to break into multiple lines.
Example<html><br><head><br> <style><br> table {border-collapse:collapse; table-layout:fixed; width:310px;}<br> table td {border:solid 1px #fab; width:100px; word-wrap:break-word;}<br> </style><br></head></p> <p><body><br> <table></p> <pre class="brush:php;toolbar:false"> <tr> <td>1</td> <td>Lorem Ipsum</td> <td>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </td> </tr> <tr> <td>2</td> <td>LoremIpsumhasbeentheindustry'sstandarddummytexteversincethe1500s,whenanunknown</td> <td>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</td> </tr> <tr> <td>3</td> <td></td> <td>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...</td> </tr> |