Skip to content

Instantly share code, notes, and snippets.

@yn-misaki
Last active June 21, 2016 04:47
Show Gist options
  • Save yn-misaki/93c2ae308fc3549141aeb601dba06e54 to your computer and use it in GitHub Desktop.
Save yn-misaki/93c2ae308fc3549141aeb601dba06e54 to your computer and use it in GitHub Desktop.
GmailでHTMLメールのCSSが効かない問題の対処法 ref: http://qiita.com/yn-misaki/items/70948922d7a494f810ee
<link href="<CSSファイルのURL>" rel="stylesheet" type="text/css">
<style type="text/css">
スタイルの設定を記述!
</style>
<html>
<body>
<h1 style="color:red;">赤色で表示されます</h1>
</body>
<html>
<html>
<head>
   <link href="hogehoge.css" rel="stylesheet" type="text/css">
</head>
</html>
<html>
<head>
<style type="text/css">
h1 {color:red;}
</style>
</head>
<body>
<h1>赤色で表示されます</h1>
</body>
</html>
<html>
<head>
</head>
<body>
<h1 style="color: red">赤色で表示されます</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment