@JamesolukanniSubmitted 9 months ago
Jamesolukanni
@JamesolukanniAll comments
- @Joel12rSubmitted 10 months ago
Things I found difficult
- Mostly was the instructions on how to style the list in a way that a new line begins at the same spot as the first line.
Questions
- How do I write a list in which the characters start at the beginning of the same line in a way that the second line of the same paragraph doesn't go inward?
@JamesolukanniPosted 10 months agoIt's pretty simple as I also just completed the challenge. You can either make use of <span> or <p> or some other inline element after your <li> before you input your word so you can select the <p> or <span> using descendant selection in css and style it in such a way that the second line starts from exactly where the first line starts from. you can check my solution here https://jamesolukanni.github.io/recipiepage/. Go through my repo https://github.com/Jamesolukanni/recipiepage.git if you’d like to see how I did mine but that’s the explanation in a nutshell
0