I had to look up somethings I never picked up while learning the fundamentals of HTML and CSS. Styling the markers posed as a problem but I was able to find my way around it. I had to re-strategize while dealing with nesting in CSS, putting general styles there and dealing with individual styles with their own selectors. I don't know if my CSS is clean.
DPOsengo
@DPOsengoAll comments
- @Laridot-1Submitted 9 months ago@DPOsengoPosted 9 months ago
Hi, I see that you used
ul::marker
to color your bullets, interesting, but apparently still "experimental", here is a whole page I used, very interesting, explaining how to completely restyle them : CSS: Colored Bullets and List numbers by Bert Bos ... and I will spoil the end, when the author gives an even quicker trick to do that : put your text in<span>
like this :<li><span>This is a list element</span></li>
then you color your
<li>
with these 2 steps :li {color: red} li span {color: black}
Of course that's "if you have the right to modify the markup", if you cannot add spans, then the whole page explains the how-to.
Happy reading !
Marked as helpful0 - @FabianGutySubmitted 9 months ago@DPOsengoPosted 9 months ago
Hi, you submitted the solution for the Omelette recipe to the QR Code exercise ! Please correct that mistake so we can compare your solution with the instructions and see how you did it !
0