Durgesh Dangi
Durgesh Dangi

Reputation: 213

margin not working when i convert html to pdf on button click

I want to space between durgesh and last word so, I use this CSS:-

"margin-left: 20px"

it is proper working on the browser but when I generate pdf through generate pdf button

CSS property is not working

please open js fiddle link in new window because "generate PDF" button is not working StackOverflow

<script async src="//jsfiddle.net/5ud8jkvf/9475/embed/"></script>

Upvotes: 0

Views: 2108

Answers (1)

LKG
LKG

Reputation: 4192

Use media="print" for it.

<link rel="stylesheet" type="text/css" media="print" href="mystyle.css">

@media print {
  /* css code goes here */
}

<style type="text/css"> @media print { } </style> or you can use <style media="print"></style>

Upvotes: 1

Related Questions