Jump to content
  • 0

table. Последние ячейки растянуты


Старовер
 Share

Question

1. Задаю ячейкам таблицы размеры 70х70px.

2. Внутри каждой есть див с картинкой. Размеры самого рисунка - 144х144px.

3. Таблица состоит из 8х8 ячеек(шахматная доска).

4. Последний ряд и последняя строка получаются вытянутыми.

5. Полагаю всему виной самая последняя(8;8) ячейка.

Код(Java):

	<table>
<c:forEach items="${gameRow.game.board.pieces}" var="pieceRow" varStatus="status">
<tr>
<c:forEach items="${pieceRow}" var="piece">
<td style="width:70px;height:70px;">
<div style="width:inherit;height:inherit;"><img src="<c:out value="${piece.imagePath}"/>"/></div>
</td>
</c:forEach>
</tr>
</c:forEach>
</table>

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Первые и последние две клетки:

	<table>
<tr>
<td style="width:70px;height:70px;">
<div style="width:inherit;height:inherit;"><img
src="/imgs/boards/cold-marble/dark.gif"/></div>
</td>
<td style="width:70px;height:70px;">

<div style="width:inherit;height:inherit;"><img
src="/imgs/boards/cold-marble/light.gif"/></div>
</td>
................................................................................
....
<td style="width:70px;height:70px;">
<div style="width:inherit;height:inherit;"><img
src="/imgs/boards/cold-marble/light.gif"/></div>

</td>
<td style="width:70px;height:70px;">
<div style="width:inherit;height:inherit;"><img
src="/imgs/boards/cold-marble/dark.gif"/></div>
</td>
</tr>

</table>

Link to comment
Share on other sites

  • 0

Нет, все одно проблемы остались. Но теперь проблема только с последним рядком. Теперь он получается меньше, чем другие %) Вот таблица:

.game table{
width:658px;
height:658px;
}

Вот ячейки:

.game td{
border:none;
height:12.5%;
width:12.5%;
}

Link to comment
Share on other sites

  • 0
Только Яву я не увидел...
Там присутствуют JSTL-теги и EL(expression language).
и может чего не понял, но как это у ячейки размер 70 пикселей, а у рисунка в ячейке 140 пикселей?
Ну сам рисунок 140, а ячейка не должна показывать весь рисунок - должна обрезать его по 70.
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