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

the `bgcolor` attribute is being filled in when the background color is set on a table elements via css. However it only works if you write `background-color: blue` It should...

feature request

I grabbed a copy of the project and ran `gulp test` and one test failed. It seems to be because of how Windows handles line breaks because the CSS is...

bug

Using this in my workflow for generating emails. Works wonderfully except when there's template code that conditionally renders DOM. My hunch is cheerio trips up because the template code confuses...

Hello, it seem css variable not supported in most email client, and it should be replace by inliner before sent. input ```css /* style.css */ .bg-gray-100{ --tw-bg-opacity:1; background-color:rgb(237 242 247/var(--tw-bg-opacity));...

Hi there! How you doing? Hope you are fine! I tried making a simple app like this ``` var extractCss = require('extract-css'); var options = { url: './', applyStyleTags: true,...

CSSOM doesn't expect `;` inside import statements. However while importing fonts we can have multiple weights, where in we will have to use the `;`. In this case, the parsing...

I used a wildcard style for reset, like this ; ```css * { margin: 0; padding: 0; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; } ```...

Fixes #117 by introducing `isDocument` option

I am using this package indirectly for a nodejs project, via html-pdf-node package, just yesterday when I reinstalled the dependencies on a development environment I got this error: ``` /xxxxxx/node_modules/remote-content/node_modules/axios/index.js:1...

It seems that `inline-css` is truncating the "external identifier" part of DOCTYPE. Consider this example ```javascript const inlineCss = require('inline-css') inlineCss( '', { url:'file://test.html' } ).then(console.debug) // ``` Versions: ```...