javascript - Styles not working properly in <td> -


i'm using below html in jsp , loading using window.open() function. working in original page not loading when window.open in ie7. idea please?

<table width="100%" border="0" cellspacing="0" style="table-layout: fixed;">     <tr>         <td align="left" class="tableinnercontent" width="60%" style="word-wrap: break-word;">             ${dynamic text here}         </td>     </tr> 

as word-wrap css3 property, supported ie9 , higher. ie8 try

          word-wrap: break-word;         -ms-word-wrap: break-word; 

update

it seems if use -ms-word-wrap in ie7, defaults white-space: nowrap; overrides word-wrap property.

once again ie hack required. try adding ie7.

white-space: normal;  

Comments