Skip to content

Commit dbb6ffb

Browse files
authored
Update README.md
Update indentation.
1 parent 8b16741 commit dbb6ffb

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,32 +29,32 @@ const html = cssToHtml(css);
2929
Input:
3030
```css
3131
h1 {
32-
content: 'Awesome!';
33-
color: grey;
32+
content: 'Awesome!';
33+
color: grey;
3434
}
3535
p > button.rounded {
36-
content: 'Click here';
37-
background: #fff;
38-
border-radius: 8px;
36+
content: 'Click here';
37+
background: #fff;
38+
border-radius: 8px;
3939
}
4040
p > button.rounded:hover {
41-
background: #ddd;
41+
background: #ddd;
4242
}
4343
a img#logo {
44-
content: 'https://example.com/image';
45-
display: block;
46-
width: 1.5em;
47-
height: 1.5em;
44+
content: 'https://example.com/image';
45+
display: block;
46+
width: 1.5em;
47+
height: 1.5em;
4848
}
4949
```
5050

5151
Output:
5252
```html
5353
<body>
54-
<h1>Awesome!</h1>
55-
<p>
56-
<button class="rounded">Click here</button>
57-
</p>
58-
<a><img src="https://example.com/image" id="logo"></a>
54+
<h1>Awesome!</h1>
55+
<p>
56+
<button class="rounded">Click here</button>
57+
</p>
58+
<a><img src="https://example.com/image" id="logo"></a>
5959
</body>
6060
```

0 commit comments

Comments
 (0)