[CSS] Day 4: Let's practice - box




Let's create box.html and retain basic html code

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>

  </body>
</html>

Block-level element and inline element

Block-level: uses entire space

/*
block level element
*/

Inline element: uses partial

/*
inline element
*/

comma , allows duplicate code

 h1, a{
     border:5px solid red;
 }

more examples : CSS box model --> image search




Right-Click --> Inspect









Popular posts from this blog

[AWS] Intro to Cloud Practitioner 01

[AWS] AWS Management Interfaces 02