Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

Welcome to our front-end web developer learning pathway!

Here we provide you with a structured course that will teach you all you need to know to become a front-end web developer. Work through each section, learning new skills (or > improving existing ones) as you go along. Each section includes exercises and assessments to test your understanding before you move forward.

  • CSS is a style sheet language
  • CSS layout is mostly based on the box model
  • CSS ruleset aka rule
  • To learn a lot more see: CSS selectors
  • The <body> is a block element, meaning it takes up space on the page. The margin applied to a block element will be respected by other elements on the page. In contrast, images are inline elements, for the auto margin trick to work on this image, we must give it block-level behavior using display: block;.