inline-css icon indicating copy to clipboard operation
inline-css copied to clipboard

Inline css into an html file.

Results 66 inline-css issues
Sort by recently updated
recently updated
newest added

In order to predictably add height to an element in email developer, the height attribute is necessary. Recommend adding a applyHeight setting that works exactly as the applyWidth setting. #64

Internal measurements have shown that this module can block node's internal event loop for about 200ms which is quite a long time. Any chance you could break down internal async...

Hello! This code: `.class { background: -webkit-linear-gradient(-45deg, #306ab2 0%, #00e1ed 70%, #00e1ed 70%); }` Inlines like a: `Some content` We losing "spaces" between color hashes and percent values.

bug
help wanted

Im getting `` instead of `` using it with gulp-inline-css 3.1.0.

When two selectors match the same element, and both have `!important`, then the selector specificity is ignored and the last rule wins: ``` Javascript inlineCss('p a {color: red!important} a{color: black!important}...

enhancement
help wanted

The example html content: ``` html /* somebody */ .content { background: #002b36; color: #839496; } Hello! ``` The error result is: ``` html /* somebody */ .content { background:...

The following CSS rule: `background: linear-gradient(to bottom right, red, yellow);` translates to: `background: linear-gradient(tobottomright,red,yellow);` instead of: `background: linear-gradient(to bottom right,red,yellow);` Version: 2.2.1

bug
help wanted

I've got a reset style something like this: ``` * { margin: 0; padding: 0; } ``` the result is: ``` Actionable email ``` I can't think of any reason...

enhancement
help wanted

I know thats way more complex but is it possible to also support the following: ``` div.info::before { content: 'Info'; background-color: #66dd66; } ```

would be great to convert background colors set on the `bgcolor` attribute to use best practices, (always hex with 6 chars) see https://litmus.com/blog/background-colors-html-email

feature request