how do I fix the ordered list and thr other paragraphs to be below the image? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

how do I fix the ordered list and thr other paragraphs to be below the image?

I am having struggle fixing the ordered list below image can someone please tell me what to fix? https://code.sololearn.com/WBIqli7Q793r/?ref=app

16th Jul 2023, 5:38 AM
Peter Reyna
Peter Reyna - avatar
1 Answer
+ 3
Peter Reyna [Code]: div{ display:flex; margin:10px; width:300px; height:200px; } Your divs are all displayed with flex value which make elements to the next of each other, to prevent and make it responsive you could add the blow line of code under the display with flex value for divs. [Solution]: flex-wrap:wrap; Or you can remove the display for divs or give it the block value.
16th Jul 2023, 6:28 AM
Yasin Rahnaward
Yasin Rahnaward - avatar