Simple Question on Table formating....

  • Thread starter Thread starter Veeresh
  • Start date Start date
V

Veeresh

Hello All,
In the below code even though I specified 50% width for each TD, left side
cell is not getting wraped after reaching 50%. How to make sure when my cell
data is "/" to set to the required width ? How to make sure the left side
data will be 50% wdth. If I use any other character it works great. Thanks,
Veer


<table width='100%' border = "1">
<tr>
<td width = "50%">/////// //////// //////// /////// //////// ///////
////// //////// /////// /////// ////// ///// /////// /////// ////////////
///// ////// //////// ///////</td>
<td width = "50%">******* ******** ******** ******* ******** *******
****** ******** ******* ******* ****** ***** ******* ****** *************
***** ****** ******** *******</td>
<tr>
</table>
 
Take the spaces out of your attribute declaration:

<td width="50%"...

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Kevin
I really appreciate your answer. It appears that my problem is still not
solved.
On my production report has these kind of data and literally it is going
beyond 100% resulting not able to take prinout in A4 size prinouts. Badly
need help.
Veer
 
Kevin
I really appreciate your answer. It appears that my problem is still not
solved.
On my production report has these kind of data and literally it is going
beyond 100% resulting not able to take prinout in A4 size prinouts. Badly
need help.
Veer

it seems to be an IE bug. I tried firefox and ie and firefox handles
it properly.

-Adam
 
Back
Top