Assessment for: Fundamental CSS Comprehension

Hi there,

Can anyone kindly check my code please? Would be highly appreciated.

Link to assessment:

Link to my code:

Thank you!

Hi @Kebin

Great job! :medal_sports:

I can’t spot any mistakes in your code. I have just two little remarks regarding the style/structure:

  • You have sectioned your CSS with comments which is great, but some rules in /* CARD CONTENT */ belong to other sections like the .card footer p {} rule.
  • Always make sure having a space after the colon for readability:
    /* This is easier to read */
    font-size: 2em;
    /* than this */
    font-size:2em;
    

Keep up the great work!

Cheers,
Michael

2 Likes

Thank you as always @mikoMK for the feedback! Highly appreciate it.

Kevin

2 Likes