Ved Flex

Level 3 of 20
Understanding justify-content and How It Works:
The justify-content property is a powerful CSS feature that controls how flex items are positioned along the main axis of a flex container. This property is especially useful for distributing space between and around items when they don't use all available space in the main axis. Values of justify-content:
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 StationCharging Station
Robot StatusRobot Status

Ved Flex

Level 3 of 20
Understanding justify-content and How It Works:
The justify-content property is a powerful CSS feature that controls how flex items are positioned along the main axis of a flex container. This property is especially useful for distributing space between and around items when they don't use all available space in the main axis. Values of justify-content:
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 : ;
}