fix(learn): Add inline code blocks to for i18n (#40921)

pull/40923/head
Randell Dawson 2021-02-05 01:46:19 -07:00 committed by GitHub
parent c3a0793be2
commit 167f93df76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ By default, a browser renders these elements similarly to the humble `div`. Howe
The `main` element is used to wrap (you guessed it) the main content, and there should be only one per page. It's meant to surround the information that's related to the central topic of your page. It's not meant to include items that repeat across pages, like navigation links or banners.
The `main` tag also has an embedded landmark feature that assistive technology can use to quickly navigate to the main content. If you've ever seen a "Jump to Main Content" link at the top of a page, using a main tag automatically gives assistive devices that functionality.
The `main` tag also has an embedded landmark feature that assistive technology can use to quickly navigate to the main content. If you've ever seen a "Jump to Main Content" link at the top of a page, using a `main` tag automatically gives assistive devices that functionality.
# --instructions--

View File

@ -31,7 +31,7 @@ Create a CSS declaration for your `orange-text` id in your `style` element. Here
}
```
**Note:** It doesn't matter whether you declare this CSS above or below pink-text class, since id attribute will always take precedence.
**Note:** It doesn't matter whether you declare this CSS above or below `pink-text` class, since the `id` attribute will always take precedence.
# --hints--