Body Border For All Pages - Css Print Media
I have an html page with 2 printable pages. I created a media print style border for each page but my code adds a border for the first page only. What do I need to add to show the
Solution 1:
I was having a similar problem. Here is how I did it:
#body {
border-style: solid;
border-color: red;
}
If this doesn't work, try putting the border color directly into the media. Remember to add border-style: solid;
first, through.
Post a Comment for "Body Border For All Pages - Css Print Media"