li:before{ content: “■”; } How to Encode this Special Character as a Bullit in an Email Stationery?

前端 未结 6 1207
小鲜肉
小鲜肉 2021-01-30 04:00

After proudly coloring my liststyle bullet without any image url or span tags, via:

ul{ list-style: none; padding:0;  margin:0;  }
li{ padding-left: 1em; text-in         


        
相关标签:
6条回答
  • 2021-01-30 04:19

    You ca try this:

    ul { list-style: none;}
    
    li { position: relative;}
    
    li:before {
        position: absolute;  
        top: 8px;  
        margin: 8px 0 0 -12px;    
        vertical-align: middle;
        display: inline-block;
        width: 4px;
        height: 4px;
        background: #ccc;
        content: "";
    }
    

    It worked for me, thanks to this post.

    0 讨论(0)
  • 2021-01-30 04:20

    Never faced this problem before (not worked much on email, I avoid it like the plague) but you could try declaring the bullet with the unicode code point (different notation for CSS than for HTML): content: '\2022'. (you need to use the hex number, not the 8226 decimal one)

    Then, in case you use something that picks up those characters and HTML-encodes them into entities (which won't work for CSS strings), I guess it will ignore that.

    0 讨论(0)
  • 2021-01-30 04:20

    You shouldn't use LIs in email. They are unpredictable across email clients. Instead you have to code each bullet point like this:

    <table width="100%" cellspacing="0" border="0" cellpadding="0">
        <tr>
            <td align="left" valign="top" width="10" style="font-family:Arial, Helvetica, Sans-Serif; font-size:12px;">&bull;</td>
            <td align="left" valign="top" style="font-family:Arial, Helvetica, Sans-Serif; font-size:12px;">This is the first bullet point</td>
        </tr>
        <tr>
            <td align="left" valign="top" width="10" style="font-family:Arial, Helvetica, Sans-Serif; font-size:12px;">&bull;</td>
            <td align="left" valign="top" style="font-family:Arial, Helvetica, Sans-Serif; font-size:12px;">This is the second bullet point</td>
        </tr>
    </table>
    

    This will ensure that your bullets work in every email client.

    0 讨论(0)
  • 2021-01-30 04:23

    This website could be helpful,

    http://character-code.com
    

    here you can copy it and put directly on css html

    0 讨论(0)
  • 2021-01-30 04:39

    You are facing a double-encoding issue.

    and &#8226; are absolutely equivalent to each other. Both refer to the Unicode character 'BULLET' (U+2022) and can exist side-by-side in HTML source code.

    However, if that source-code is HTML-encoded again at some point, it will contain and &amp;#8226;. The former is rendered unchanged, the latter will come out as "&#8226;" on the screen.

    This is correct behavior under these circumstances. You need to find the point where the superfluous second HTML-encoding occurs and get rid of it.

    0 讨论(0)
  • 2021-01-30 04:43

    Lea's converter is no longer available. I just used this converter

    Steps:

    1. Enter the Unicode decimal version such as 8226 in the tool's green input field.
    2. Press Dec code points
    3. See the result in the box Unicode U+hex notation (eg U+2022)
    4. Use it in your CSS. Eg content: '\2022'

    ps. I have no connection with the web site.

    0 讨论(0)
提交回复
热议问题