fix(curriculum): remove unnecessary code tags to allow translation (#46574)

pull/46565/head
sidemt 2022-06-21 11:24:34 +09:00 committed by GitHub
parent 16c23d0d10
commit a75a866602
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ The `p` elements are nested in an `article` element with the class attribute of
.item p { }
```
Using the above selector, add a `display` property with value `inline-block` so the `p` elements behave more like `inline` elements.
Using the above selector, add a `display` property with value `inline-block` so the `p` elements behave more like inline elements.
# --hints--

View File

@ -9,7 +9,7 @@ dashedName: step-37
That is kind of what you want, but now it would be nice if the flavor and price were on the same line. `p` elements are <dfn>block-level</dfn> elements, so they take up the entire width of their parent element.
To get them on the same line, you need to apply some styling to the `p` elements, so they behave more like `inline` elements. Add a `class` attribute with the value `item` to the first `article` element under the `Coffee` heading.
To get them on the same line, you need to apply some styling to the `p` elements, so they behave more like <dfn>inline</dfn> elements. Add a `class` attribute with the value `item` to the first `article` element under the `Coffee` heading.
# --hints--