I have a page with bootstrap css layout. I am trying to print off a table. However the table looks nothing like it does on screen. I include the css file like this:
<link href='../bootstrap.min.css' rel='stylesheet' type='text/css'>
Is there a way to get the printed table to look the same as on screen or do I have to create a specific css file just for the table I want to print?
You can apply the style sheet too both print and screen using media='screen,print'
<link ../bootstrap.min.css' rel='stylesheet' media='screen,print'>