Jump to content
  • 0

Масштабируемость IMG в таблице.


sladki
 Share

Question

Делаю страничку просмотра объявления, с приложенными к нему одной или несколько фото.

Идея в следующем, есть таблица из двух ячеек НЕфикрсированной ширины. В левую ячейку вставляется фото, и растягивается в месте с ней на всю ширину таблицы. Если же фото несколько, то в правую колонку вставляется ещё одна таблица с вложенными в неё миниатюрами остальных фото, после чего левая колонка основной таблицы должна пропорционально уменьшиться вместе с фото, уступив место правой ячейке. Ниже изложенный код работает во всех браузерх, кроме IE. В IE, левая колонка распирается на всю ширину таблицы, а правая ячека выпирает за пределы div'a.

Как изменить код, чтобы задумка работала и в IE?

CSS:

.content {width:400px; background:#333; padding:10px;}
.photo {border:1px solid #E5E5E5; background:#FFF;}
.photo-mini {margin:10px 10px 0px 0px;}

HTML:

<div class="content">

<table width="100%" cellspacing="0" cellpadding="0" class="photo">
<tr>
<td width="100%" valign="top" style="padding:10px;">
<img src="" width="100%"/>
</td>
<td width="" valign="top">
<table width="53" cellspacing="0" cellpadding="0" class="photo-mini">
<tr><td><img src="" width="53" /></td></tr>
<tr><td><img src="" width="53" /></td></tr>
<tr><td><img src="" width="53" /></td></tr>
<tr><td><img src="" width="53" /></td></tr>
<tr><td><img src="" width="53" /></td></tr>
</table>
</td>
</tr>
</table>

</div>

Edited by sladki
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

от table { table-layout: fixed; } ещё хуже.

Помогло <img src="image.jpg" width="100%" style="zoom:0.5;"/>

Спасает любое значение zoom < 1, картинка становится нужного размера вместе с ячейкой.

Всем спасибо, вопрос закрыт!)

Edited by sladki
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • 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