Latest solutions
Latest comments
- @Laridot-1@DPOsengo
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 helpful - @FabianGuty@DPOsengo
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 !