24.2 Code Repo Question | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

24.2 Code Repo Question

Really struggling with the question on this one, anyone got any ideas? Maybe i still dont quite understand the principles from this module but Im hoping the answer will help it make sense. This is the part of the question im struggling with together with the code its referring to. Its to do with applying Flex to a form and for the elements to appear in columns instead of ontop of each other. Question (part of): 1. Modify the HTML of the form: remove the <br> elements that separate the form into lines. - Add <br> elements after the <label> tags, so that the number field appears after the label, on a new line. - Wrap each section element into <div> tags, and provide them a class="form-section". - Now we will have 3 "form-section" elements. Two of them will contain the labels and their corresponding fields, while the 2rd one will contain the button. The code as it stands: <section id="buy"> <form> <label for="Adults"><b>Adults</b></label> <input type="number" id="Adults"> <br><br> <label for="Children"><b>Children</b></label> <input type="number" id="Children"> <br><br> <input type="button" value="Buy"> </form> </section> Thanks so much!

18th Mar 2022, 9:24 PM
Thomas Murphy
7 Answers
+ 12
When labels and form fields are correctly connected
14th Jun 2023, 1:59 AM
ch gopi
ch gopi - avatar
+ 2
Thomas Murphy 1 - remove br tag after the input and add br after the label 2 - add each label tag with input tag inside a div tag and provide a class to that div tag: Example: <div class = 'form-section'> <label></label><br> <input></input> </div> Now change other inputs like that.
18th Mar 2022, 11:26 PM
A͢J
A͢J - avatar
+ 1
Thomas Murphy in code AJ posted he missed one quote, maybe this quote make problem. <div class = "form-section"> not <div class = "form-section>
20th Mar 2022, 6:39 AM
PanicS
PanicS - avatar
0
The code I pasted in my question is my code. The parts of the question I pasted are all referring to that piece of code. I dont understand how to do what its asking. Cheers
18th Mar 2022, 9:52 PM
Thomas Murphy
0
Thanks for this. Can you explain what's going on in the code (your answer), or would you need to see the whole project/code/question? Your solution has put everything in the right place/orientation but a few other unexpected things have changed which I will need to figure out, I think these changes are an issue with the rest of my code....standard. Thanks again.
19th Mar 2022, 8:14 PM
Thomas Murphy
0
when labels and forms are correctly connected
1st Feb 2024, 2:24 PM
Shaik Abdul Khadar
Shaik Abdul Khadar - avatar
0
When labels and forms are correctly connected
6th Apr 2024, 11:26 AM
Kola Teju
Kola Teju - avatar