Jump to content
  • 0

Отточие


Racemus
 Share

Question

Всем добрый день.

Меня интересует вопрос создания отточия в верстке HTML письма.

Тема создания этого элемента разными способами поднималась и здесь, и на других сайтах, но речь всегда идет просто о HTML и CSS. В моей ситуации есть ограничения E-mail HTML.

Я уже сломал голову. Может кто-то сталкивался с этой проблемой?

Link to comment
Share on other sites

13 answers to this question

Recommended Posts

  • 0

Досконально вопрос не курил и могу ошибаться, но css сложно передать в email.

Кстати, вот вроде неплохая статья по сабжу: http://blog.feedgee.com/tag/css-%D0%B2-email/

Очередной copy/paste. Такие статьи читал, они не отвечают на мой вопрос.

Вместо этих статей можно просто пользоваться этим http://www.emailology.org/#3

Вопрос остаётся открытым (((

Link to comment
Share on other sites

  • 0

А никак походу. border: 1px dotted; мало кто поймет, бекграунд не отображается в некоторых почтовых клиентах (MS Outlook 100%, проверено на себе).

Я пользуюсь The Bat! Он вообще не отображал раньше рисунков, а сейчас предлагает загружать, но я ориентируюсь больше на web-интерфейсы (mail, rambler, yandex, gmail,...)

Link to comment
Share on other sites

  • 0


<table width="100%">
<tr>
<td width="1%">лево</td>
<td width="100%" style="border-bottom: black 1px dotted;"> </td>
<td width="1%">право</td>
</tr>
</table>

Хорошо. Спасибо. Уже вариант.

А вертикально выровнять как? Чтобы точки были на уровне текста.

Link to comment
Share on other sites

  • 0

А вертикально выровнять как? Чтобы точки были на уровне текста.

м.б. вроде такого?

<table width="100%">
<tr>
<td width="1%"><p style="position: relative; top: 4px">лево</p></td>
<td width="100%" style="border-bottom: black 1px dotted;"> </td>
<td width="1%"><p style="position: relative; top: 4px">право</p></td>
</tr>
</table>

http://jsfiddle.net/NDsYH/

Link to comment
Share on other sites

  • 0

А вертикально выровнять как? Чтобы точки были на уровне текста.

м.б. вроде такого?

<table width="100%">
<tr>
<td width="1%"><p style="position: relative; top: 4px">лево</p></td>
<td width="100%" style="border-bottom: black 1px dotted;"> </td>
<td width="1%"><p style="position: relative; top: 4px">право</p></td>
</tr>
</table>

http://jsfiddle.net/NDsYH/

Всё прекрасно, но position в e-mail работать не будет скорее всего. Я не успел еще всё протестировать, но вряд ли.

Link to comment
Share on other sites

  • 0

Проблему решил другим способом. В письмах должно работать. Но проверил еще не везде. Кому интересно:


<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="1%">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="line-height: 0.2;"> </td>
</tr>
<tr>
<td nowrap><p>лево лево</p></td>
</tr>
</table>
</td>
<td width="100%">
<table width="100%" border="0" cellpadding="0" cellspacing="2">
<tr>
<td style="border-bottom: black 2px dotted;"> </td>
</tr>
<tr>
<td style="line-height: 0.3;"> </td>
</tr>
</table>
</td>
<td width="1%">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="line-height: 0.2;"> </td>
</tr>
<tr>
<td nowrap><p>право право</p></td>
</tr>
</table>
</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