Fix indentation of style tag

This commit is contained in:
Atomk
2017-03-05 12:08:27 +01:00
parent cbf73146d1
commit d4d44b1d63

View File

@ -1188,12 +1188,12 @@
"Change the <code>position</code> of the <code>h2</code> to <code>relative</code>, and use a CSS offset to move it 15 pixels away from the <code>top</code> of where it sits in the normal flow. Notice there is no impact on the positions of the surrounding h1 and p elements." "Change the <code>position</code> of the <code>h2</code> to <code>relative</code>, and use a CSS offset to move it 15 pixels away from the <code>top</code> of where it sits in the normal flow. Notice there is no impact on the positions of the surrounding h1 and p elements."
], ],
"challengeSeed": [ "challengeSeed": [
" <style>", "<style>",
" h2 {", " h2 {",
" ", " ",
" ", " ",
" }", " }",
" </style>", "</style>",
"<body>", "<body>",
" <h1>On Being Well-Positioned</h1>", " <h1>On Being Well-Positioned</h1>",
" <h2>Move me!</h2>", " <h2>Move me!</h2>",
@ -1221,13 +1221,13 @@
], ],
"challengeSeed": [ "challengeSeed": [
"<head>", "<head>",
" <style>", "<style>",
" h2 {", " h2 {",
" position: relative;", " position: relative;",
" ", " ",
" ", " ",
" }", " }",
" </style>", "</style>",
"</head>", "</head>",
"<body>", "<body>",
" <h1>On Being Well-Positioned</h1>", " <h1>On Being Well-Positioned</h1>",