What's a 3D doing in this HTML?

守給你的承諾、 提交于 2019-11-26 06:17:20

问题


I\'m trying to duplicate a mailer I got into my gmail by taking a look at its code. I see a lot of this in multiple source viewers:

 <td style=3D\"border-bottom: 1px dotted rgb(153,157, 147); border-top: 1px solid rgb(28, 140, 78);\" width=3D\"90\">=A0</td>
 <td style=3D\"border-bottom: 1px dotted rgb(153,157, 147); border-top: 1px solid rgb(28, 140, 78);\" align=3D\"right\" width=3D\"110\">

Is 3D some sort of mail rendering thing I don\'t know about?


回答1:


It's an email encoding system called "quoted-printable", which allows non-ASCII characters to be represented as ASCII for email transportation.

In quoted-printable, any non-standard email octets are represented as an = sign followed by two hex digits representing the octet's value. Of course, to represent a plain = in email, it needs to be represented using quoted-printable encoding too: 3D are the hex digits corresponding to ='s ASCII value (61).



来源:https://stackoverflow.com/questions/4016067/whats-a-3d-doing-in-this-html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!