inline-css
inline-css copied to clipboard
Inline css into an html file.
Help~ How can I use inline-css in vue or quasar framework? Thanks!
``` const inlineCSS = require('inline-css'); var input = ` @media print { @page { .root-element { size: a3; } } } Test Page `; inlineCSS(input,{url:' '}).then(function(html) { console.log(html); }).catch(function(error) {...
**Example:** normalize.css: padding-bottom: 0; padding-left: 0; padding-right: 0; Own CSS after normalize: padding: 4px 8px; The inline (alphabetical) order is: padding: 4px 8px; padding-bottom: 0; padding-left: 0; padding-right: 0; →...
Hey Please help me out in order to use in the angluar project in frontend.
If media query CSS is passed into the `extraCss` option and `preserveMediaQueries` is `true`, or if CSS is added through a `` tag, the media query-specific CSS isn't preserved in...
Hi! This plugin is so usefull. I'm trying to link a external CSS to my email template. Before this step the CSS was in HEAD section and this want a...
Version 2.4.1 An extra closing tag appear at the end when generating html. In my example, `` is added. Input: ``` hello Lorem ipsum ``` Output: ``` hello Lorem ipsum...
It does not property escape the value based on the quotes style of the HTML.
is it possible to apply stylesheet into certain element?
Hi, I'm parsing my code with inline-css and have error: `Unhandled rejection Error: Error: Unexpected }` with part of css: `@supports (-ms-accelerator:true){.trumbowyg-box-blur .trumbowyg-editor *,.trumbowyg-box-blur .trumbowyg-editor::before{color:rgba(200,200,200,.6)!important;}}` I can't remove this part...