scrimba
Frontend Career Path
Web dev basics
Build a Google.com clone
Write your first lines of CSS! - Solution
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Write your first lines of CSS! - Solution
AboutCommentsNotes
Write your first lines of CSS! - Solution
Expand for more info
styles.css
run
preview
console
/* 
Challenge:
Re-design the cookie widget!
PS: Make sure you change ALL of the listed CSS properties.
*/

body {
background: yellow; /* red, blue, yellow, etc */
color: red; /* red, blue, yellow, etc */
font-size: 20px; /* 0px - 100px and beyond */
font-weight: lighter; /* lighter, normal, bold */
text-align: right; /* left, center or right */
margin-top: 5px; /* From 0px and upwards */
}





Console
/index.html
-3:10