CSS Course Hindi - Beginner to Pro ( 2023 ) | Chapter 2

Notes

Background

notion image
Background is used on any element to give it specific color or image.
for example
background-color:red; will used to give red background to any html tag.
we can also apply background image on html elements.
we just need to provide file path of background
background:url(”/path/of/image”);
 
useful background property →
  • background-color → provide background color
  • background-image → provide background image
  • background-size → size of background
  • background-repeat → control background will repeat or not
  • background-attachment → background will fixed or scroll with page scroll
  • background-position → it decides position of background on page
Multiple Background example
notion image

Margin

Margins are used to create space around elements, outside of any defined borders.
  • margin-top : 20px;
  • margin-right : 40px;
  • margin-bottom : 40px;
  • margin-left: 20px;
    • notion image
Short hand of margin
  • margin : top right bottom left;
  • margin: top ( right left ) bottom ;
  • margin: ( top bottom ) ( right left );
  • margin: all sides ;

Padding

Padding is used to create space around an element's content, inside of any defined borders.
  • padding-top
  • padding-right
  • padding-bottom
  • padding-left
notion image
Short hand of margin
  • padding : top right bottom left;
  • padding: top ( right left ) bottom ;
  • padding: ( top bottom ) ( right left );
  • padding: all sides ;

Border

border are simple line which surround any elements
border-width:1px;
border-color:red;
border-type: solid;
border-radius : 10px;
border radius responsible roundness of border
Short hand
border: width color type;
 
Border Types Examples
notion image

Outline

outline is another line which is outside of margin .
Same Properties as Border
outline-offset is used to create spacing between border and oultine
notion image

Exercise

Problem 1

 
Output :
You can use any image.
notion image

Problem 2

 
Output :
notion image

Problem 3

 
Output :
notion image

Problem 4

 
Output :
notion image