From 7f6a653c289d61cc0286e887cbb836ae2a51d226 Mon Sep 17 00:00:00 2001 From: M B Date: Thu, 9 Jan 2020 11:29:50 -0500 Subject: [PATCH] fix: update react lesson link (remove 404) (#38031) * Update lesson link (remove 404) Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> --- .../react/introducing-inline-styles.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/03-front-end-libraries/react/introducing-inline-styles.english.md b/curriculum/challenges/english/03-front-end-libraries/react/introducing-inline-styles.english.md index 2acbed7f7c..b749709fd3 100644 --- a/curriculum/challenges/english/03-front-end-libraries/react/introducing-inline-styles.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/react/introducing-inline-styles.english.md @@ -8,7 +8,7 @@ forumTopicId: 301395 ## Description
-There are other complex concepts that add powerful capabilities to your React code. But you may be wondering about the more simple problem of how to style those JSX elements you create in React. You likely know that it won't be exactly the same as working with HTML because of the way you apply classes to JSX elements. +There are other complex concepts that add powerful capabilities to your React code. But you may be wondering about the more simple problem of how to style those JSX elements you create in React. You likely know that it won't be exactly the same as working with HTML because of the way you apply classes to JSX elements. If you import styles from a stylesheet, it isn't much different at all. You apply a class to your JSX element using the className attribute, and apply styles to the class in your stylesheet. Another option is to apply inline styles, which are very common in ReactJS development. You apply inline styles to JSX elements similar to how you do it in HTML, but with a few JSX differences. Here's an example of an inline style in HTML: <div style="color: yellow; font-size: 16px">Mellow Yellow</div>