Jump to content
  • 0

Перенос слов в таблице в разных браузерах


kpdozer
 Share

Question

Поскажите как можно решить:

Необходимо в ячейке определенной ширины перечислить номера телефонов через запятую. Вот код

<table width="404" border="1" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<td width="400">(495) 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, 111-11-11, 222-22-22, 333-33-33, </td>
</tr>
</table>

При переносе в ячейке, IE , Crome, Safari разрывают номера телефонов в месте где встречается тире. А Operа, Firefox нет. Можно как либо установить правила переноса? Заренее спасибо.

Даже если открыть этот пост в Opera, а потом в любом IE - он отобразится по разному.

Edited by kpdozer
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Добиться кроссбраузерного поведения можно будет только если

<table width="404" border="1" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<td width="400"><span>222-22-22</span>, <span>333-33-33</span>, <span>111-11-11</span>, ..... <span>333-33-33</span></td>
</tr>
</table>

TD SPAN{
white-space:nowrap;
}

Link to comment
Share on other sites

  • 0

Вот что накопал по этой теме.

статьи:

старая но для общего развития: Про переносы в браузерах

спецификация HTML 4.01 (пункт 9.3.3 Расстановка дефисов): Источник

лучшее разъяснение про типы "ЧЁРТОЧЕК": Типографика (и про HTML тоже)

тут можно найти код различных тире HTML: Мнемоники HTML

Один из способов:

C помощью тега <nobr>

Теперь код может быть таким (семантически он правилен, но тире получается разной длинны в разных браузерах):

<table width="404" border="1" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<td width="400">(495) 111&#8209;11&#8209;11 222&#8209;22&#8209;22 333&#8209;33&#8209;33 111&#8209;11&#8209;11 222&#8209;22&#8209;22 333&#8209;33&#8209;33 111&#8209;11&#8209;11 222&#8209;22&#8209;22 333&#8209;33&#8209;33 111&#8209;11&#8209;11 222&#8209;22&#8209;22 333&#8209;33&#8209;33
</td>
</tr>
</table>

В качестве альтернативы можно использовать − он вроде везде одинаковый.

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