Html string (horizontal rule) is not supported in the Android Gmail client

enter image description here

This is an example image of the created message box for the Android Gmail client, here I have to insert a line (HTML line using a tag or Hr table) at the position (red mark between these two statements) using a custom HTML message , I try in many different ways, but i don't get any rows.

Share your idea on this issue. Any suggestion for Html support in the Android Gmail client will be appreciated.

Thanks.

+4
source share
2 answers

Try the following:

hr { height: 1px; border: 0; background: #line_color; display: block; } 

Hope this helps.

0
source

Is it possible to just use a border? I find that hr is often too big if the effect you are looking for can be achieved with borders.

0
source

Source: https://habr.com/ru/post/1441263/


All Articles