7
Gmail 용 HTML 이메일 스타일링
내부 스타일 시트를 사용하는 HTML 이메일을 생성하고 있습니다. <!doctype html> <html> <head> <style type="text/css"> h2.foo {color: red} </style> </head> <body> <h2 class="foo">Email content here</foo> </body> </html> Gmail에서 보면 내부 스타일 시트의 모든 스타일이 무시되는 것 같습니다. Gmail은 인라인 규칙 이외의 모든 스타일을 무시하는 것 같습니다. <h2 style="color: red">Email content here</foo> …
99
html
css
gmail
html-email