Link to home
Start Free TrialLog in
Avatar of MrTV
MrTVFlag for Thailand

asked on

border html css

how can i change <td width="274" height="85">  to with incm i plane to make it fit for printing
and How can i change the border to the normall line note tree d line when print I use dreamweavwe
And 274 or 85 I try to change but it have select betaween percent or pixcel
<table border="1" bordercolor="#000000">
  <tr>
    <td width="274" height="85"><div align="right"></div></td>
    <td width="274">&nbsp;</td>
  </tr>
</table>
 <p>&nbsp;</p>
<table width="597" border="1">

Open in new window

Avatar of sajay_j
sajay_j
Flag of India image

If I understood your problem, here is the solution. I think you need a nice border appropriate for printing as well for screen rendering.

<table border="1" bordercolor="#000000">
  <tr>
    <td width="274" height="85" style="border:1px solid #ccc;"><div align="right"></div></td>
    <td width="274" style="border:1px solid #ccc;">&nbsp;</td>
  </tr>
</table>

Adding a inline style; style="border:1px solid #ccc;"  
Test it and reply..

Regards
Sajay.
ASKER CERTIFIED SOLUTION
Avatar of psychic_zero
psychic_zero
Flag of Malaysia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial