Merge pull request #13758 from Atomk/fix/style-tag-indenting

Fix indentation of style tag
pull/13766/head
Dylan 2017-03-05 15:20:41 -06:00 committed by GitHub
commit 93f9fd54e0
1 changed files with 4 additions and 4 deletions

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."
],
"challengeSeed": [
" <style>",
"<style>",
" h2 {",
" ",
" ",
" }",
" </style>",
"</style>",
"<body>",
" <h1>On Being Well-Positioned</h1>",
" <h2>Move me!</h2>",
@ -1221,13 +1221,13 @@
],
"challengeSeed": [
"<head>",
" <style>",
"<style>",
" h2 {",
" position: relative;",
" ",
" ",
" }",
" </style>",
"</style>",
"</head>",
"<body>",
" <h1>On Being Well-Positioned</h1>",