Jump to content
  • 0

Выравнивание ячеек в таблице.


Avalon.
 Share

Question

Добрый день.

Имеется таблица

<table width="500px" >
<tr>
<td width="250px"></td>
<td width="250px"></td>
<td width="250px"></td>
<td width="250px"></td>
</tr>
</table>

С заданной-фиксированной шириной, в ней находятся ячейки у которых так же фикс ширина, к примеру у табл - 500, а у ячеек 250.

Необходимо чтобы в одной строке было не более 2-х ячеек (<td width="250px"></td>).

Это нужно для - скрипт вытаскивает из бд картинки и вставляет их в ячейки:

<table width="500px" >
<tr>
<?php
while(..в табл есть изображения..)
{<td width="250px">....</td>}
?>
</tr>
</table>

но в данном случае он тупо ставит все в одну строку и рвет верстку.

подскажите как исправить.

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

<table width="500px" >
<?php
while(..в табл есть изображения..) {
echo "<tr>";
echo "<td width="250px">Картинка</td>";
echo "<td width="250px">Следующая картинка</td>";
echo "</tr>";
?>
</table>

То есть в каждой итерации выводится по две картинки. Не лучший вариант, но как первое, что пришло в голову.

Link to comment
Share on other sites

  • 0

<table width="500px" >
<?php
$i = 0;
while(..в табл есть изображения..) {
if ($i % 2 == 0) {
echo "<tr>";
echo "<td width="250px">Картинка</td>";
echo "<td width="250px">Следующая картинка</td>";
echo "</tr>";
}

$i++;
}
?>
</table>

В общем psywalker именно об этом и говорил...

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