From de874000cda285548747de4e2f5f4f0b49cab228 Mon Sep 17 00:00:00 2001 From: sidemt Date: Wed, 3 Aug 2022 23:14:25 +0900 Subject: [PATCH] fix(curriculum): correct and improve the instruction (#47067) * fix(curriculum): correct and improve the instruction * apply jeremylt's suggestion Co-authored-by: Jeremy L Thompson Co-authored-by: Jeremy L Thompson --- .../5efb2c990dc218d6c85f89b2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efb2c990dc218d6c85f89b2.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efb2c990dc218d6c85f89b2.md index b40c637d1bf..f8c951a6dbc 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efb2c990dc218d6c85f89b2.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efb2c990dc218d6c85f89b2.md @@ -9,7 +9,7 @@ dashedName: step-42 Even though you added your button below the text input, they appear next to each other on the page. That's because both `input` and `button` elements are inline elements, which don't appear on new lines. -You learned previously that the button submits the form by default, but you can explicitly add the `type` attribute with the value `submit` to make it clearer. Go ahead and do this to specify where this button should submit the form. +The button you added will submit the form by default. However, relying on default behavior may cause confusion. Add the `type` attribute with the value `submit` to the `button` to make it clear that it is a submit button. # --hints--