We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In HTML file, I have imported 2 css files like below :
<link href="style.css" rel="stylesheet" type="text/css" /> <link href="bootstrap.css" rel="stylesheet" type="text/css" />
Currently, the exported pdf file has only css style of the bootstrap.css file.
However, I tried to add important! property for each item in style.css, the pdf could display css style of style.css file.
#myContent { background-color: lightblue !important; font-family: Helvetica Neue, sans-serif; color: red !important; padding: 20px; }
Anyone has been able to generate pdf using multiple css file and without using !important property?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In HTML file, I have imported 2 css files like below :
Currently, the exported pdf file has only css style of the bootstrap.css file.
However, I tried to add important! property for each item in style.css, the pdf could display css style of style.css file.
Anyone has been able to generate pdf using multiple css file and without using !important property?
The text was updated successfully, but these errors were encountered: