Jump to content
  • 0

Выравнивание текста во вложенной таблце


Tairon
 Share

Question

Здравствуйте, у меня есть проблема с выравниванием текста, никак не могу понять в чём дело. Суть в следующем: Есть вложенная таблица в таблице, во вложенной таблице есть текст, который напрочь отказывается центрироваться по вертикали. Код к примеру следующий:

<table>
<tr><td>text</td></tr>
<tr><td>

<table>
<tr>
<td valign="center" id="middle">Текст, который надо отцентрировать</td>
</tr>
</table>

</td>
</tr>
</table>

В чём дело не могу понять :[
#CSS
#middle { vertical-align: middle }

таблица

Edited by Tairon
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

он у тебя вообще не будет выравниваться так как незадана высота столбца, а даже если бы и была все равно в css у тебя выравнивание по центру

<table>

<tr><td>text</td></tr>

<tr><td>

<table>

<tr>

<td valign="center" id="middle">Текст, который надо отцентрировать</td>

</tr>

</table>

</td>

</tr>

</table>

В чём дело не могу понять :[

#CSS

#middle { vertical-align: middle } нужно TOP и height:50px;

Link to comment
Share on other sites

  • 0

текст в таблицах по умолчанию центрируется по вертикали.

а вот это чушь <td valign="center"

а вообще мне кажется что Вы не там middle задаете.

может так надо?

<table>
<tr><td>text</td></tr>
<tr><td valign="middle">

<table>
<tr>
<td>Текст, который надо отцентрировать</td>
</tr>
</table>

</td>
</tr>
</table>

Edited by Джин
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