Ved Flex

Level 1 of 20
Understanding justify-content and How It Works:
In Flexbox, the justify-content property controls the alignment of flex items along the main axis. It determines how space is distributed between and around content.
Values of justify-content:
start – Items are aligned to the start of the flex container.
center – Items are centered inside the flex container.
end – Items are aligned to the end of the flex container.
space-between – Items are evenly distributed with the first item at the start and the last item at the end.
space-around – Items are evenly distributed with equal space around them.
space-evenly – Items are evenly distributed with equal space between them.
  1    2    3    4    5    6 
#robot {
display : flex ;
justify-content : ;
}
Charging Station
Robot Status

Ved Flex

Level 1 of 20
Understanding justify-content and How It Works:
In Flexbox, the justify-content property controls the alignment of flex items along the main axis. It determines how space is distributed between and around content.
Values of justify-content:
start – Items are aligned to the start of the flex container.
center – Items are centered inside the flex container.
end – Items are aligned to the end of the flex container.
space-between – Items are evenly distributed with the first item at the start and the last item at the end.
space-around – Items are evenly distributed with equal space around them.
space-evenly – Items are evenly distributed with equal space between them.
1
2
3
4
5
6
#robot {
display : flex ;
justify-content : ;
}