---
title: "word-break and  word-wrap is not work in opera and mozilla (less than 17.0 version)."  
description: "word-break and  word-wrap is not work in opera and mozilla (less than 17.0 version)."  
author: "Pravesh Singh"  
published: 2013-04-25  
updated: 2013-04-26  
canonical: https://www.mindstick.com/forum/781/word-break-and-word-wrap-is-not-work-in-opera-and-mozilla-less-than-17-0-version  
category: "html5"  
tags: ["html5"]  
reading_time: 1 minute  

---

# word-break and  word-wrap is not work in opera and mozilla (less than 17.0 version).

I want to break a [word](https://www.mindstick.com/forum/305/read-word-file) which is in a [table](https://www.mindstick.com/articles/43918/how-to-design-table-using-bootstrap) and table is under a div its work proper in all [browser](https://www.mindstick.com/blog/155254/which-is-the-best-internet-browser) but in opera and mozilla (less than 17.0 [version](https://www.mindstick.com/articles/12845/things-to-remember-while-migrating-odoo-to-a-better-version)) it don't work.Below is my [code](https://yourviews.mindstick.com/view/85458/alan-turing-the-mastermind-behind-cracking-the-enigma-code-during-world-war-ii) which is use in my [web page](https://www.mindstick.com/forum/718/sql-server-report-alignment-to-center-of-web-page).

```
<div style="width: 100px; border-bottom: 1px solid #686c71; word-break: break-all;    word-wrap: break-word;"><table>     <tr>          <td>			WWWWWWWWWWWWWWWWWWWWWWWWWWWWW          </td>     </tr></table></div>
```

\

## Replies

### Reply by Vijay Shukla

As far as you need the below code which work proper

```
<div style="width: 100px; border-bottom: 1px solid
#686c71; word-break: break-all;    word-wrap:
break-word;">    <table
class="left-Content" cellpadding="0"
cellspacing="0" style="table-layout: fixed;">     <tr>          <td>WWWWWWWWWWWWWWWWWWWWWWWWWWWWW          </td>     </tr></table></div>
```


---

Original Source: https://www.mindstick.com/forum/781/word-break-and-word-wrap-is-not-work-in-opera-and-mozilla-less-than-17-0-version

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
