Jump to content

Mechanic

Newbie
  • Posts

    2
  • Joined

  • Last visited

Mechanic's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Поставлена именно такая задача и при таком доктайпе.
  2. Помогите!!! Таблица из 3-х колонок. В 1-ой колонке div при изменении размеров третьей не растягивается на 100% в IE. В других браузерах - нормально. Код прилагается <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtmll/DTD/xhtmll-transitional.dtd"> <html xmlns=http://www.w3.org/1999/xhtml xml:lang="ru" lang="ru"> <head> <title>Help</title> <style type="text/css"> body { margin:0; padding:0; height:100%; background: white; } table { height: 100%; width: 100%; border-collapse: collapse; } td { height: 100%; border: 1px solid black; } #left { height:100%; background: red; } #right { height: 1500px; } </style> </head> <body> <table> <tr> <td style="width:200px"> <div id="left">1</div> </td> <td>2</td> <td style="width:200px"> <div id="right">3</div> </td> </tr> </table> </body> </html>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy