OSDN Git Service

Regular updates
[twpd/master.git] / premailer.md
1 ---
2 title: Premailer
3 layout: 2017/sheet
4 tags: [WIP]
5 intro: |
6   [Premailer](https://github.com/premailer/premailer/) is a Ruby library that inlines CSS into HTML.
7 ---
8
9 ### Custom CSS properties
10
11 <!-- prettier-ignore -->
12 ```css
13 table, th, td {
14   /* Available on table, th and td elements */
15   -premailer-width: 32px;
16 }
17
18 table, tr, th, td {
19   /* Available on table, tr, th and td elements */
20   -premailer-height: 32px;
21 }
22
23 table {
24   /* Available on table elements */
25   -premailer-cellpadding: 32px;
26   -premailer-cellspacing: 32px;
27 }
28 ```