File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed
Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -29,32 +29,32 @@ const html = cssToHtml(css);
2929Input:
3030``` css
3131h1 {
32- content : ' Awesome!' ;
33- color : grey ;
32+ content : ' Awesome!' ;
33+ color : grey ;
3434}
3535p > 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}
4040p > button .rounded :hover {
41- background : #ddd ;
41+ background : #ddd ;
4242}
4343a 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
5151Output:
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```
You can’t perform that action at this time.
0 commit comments