Skip to content

Commit

Permalink
Fix code highlight in README
Browse files Browse the repository at this point in the history
  • Loading branch information
gebeto committed Oct 12, 2018
1 parent a5a0be0 commit 44a6367
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -8,13 +8,13 @@ Hartija is universal printing stylesheet or best printing CSS practices all in o
#### How Hartija works?

Just use it like normal CSS:
```sh
```html
<link rel="stylesheet" href="print.css" type="text/css" media="print">
```
The "magic" is in media="print", this CSS file will be used by the browser only when you print. You can also use it inside CSS like: **@media print** { .. }.

Only work you need to do is **hide** the stuff you don't need in the final print. Basically you hide some id and class in the CSS like:
```sh
```css
#navbar, #footer, #someOtherID, .someClass, .otherClass { display : none; }
```

Expand All @@ -25,8 +25,8 @@ http://vladocar.github.io/Hartija---CSS-Print-Framework/

### You can use direct download or:

```sh
npm i hartija---css-print-framework
```bash
$ npm i hartija---css-print-framework
```

```html
Expand Down

0 comments on commit 44a6367

Please sign in to comment.