this is my code :

<div style="width:100px;height:100px;background:red">
            ssssssssssssssssssssssssssssssssssssss
</div>

this is not useful:

word-wrap:break-word;
word-break:break-all;

and it cant word-wrap on firefox ,

so what can i do using css

thanks

link|improve this question

70% accept rate
2  
Which version of FF are u using? jsfiddle.net/xUwkF this is working on FF 3.6 – Chinmayee Nov 26 '10 at 5:36
that's good , many thanks . – zjm1126 Nov 26 '10 at 6:39
feedback

3 Answers

You have to apply the below css class on div:

.content-div{
    word-break:break-all;
    word-wrap: break-word;
}

And add below style on table which is bind in div

style='table-layout:fixed;width:306px;'

It will work on IE7, FF 3.6 and Chrome.

link|improve this answer
feedback

you use width and display properties together with word-wrap property:

width: 100px;
word-wrap: break-word;
display:inline-block;

It works for me both in IE and in FF.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.