w3resource

HTML-CSS: Evenly distributed children

HTML-CSS : Exercise-25 with Solution

Using HTML, CSS evenly distributes child elements within a parent element.

  • Use display: flex to use the flexbox layout.
  • Use justify-content: space-between to evenly distributes child elements horizontally. The first item is positioned at the left edge, while the last item is positioned at the right edge.
  • Alternatively, use justify-content: space-around to distribute the children with space around them, instead of between them.

HTML Code:

<!--License: https://bit.ly/3GjrtVF-->
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Using HTML, CSS evenly distributes child elements within a parent element</title>
</head>
<body>
<div class="evenly-distributed-children">
  <p>Case 1</p>
  <p>Case 2</p>
  <p>Case 3</p>
</div>
</body>
</html>

CSS Code:


.evenly-distributed-children {
  display: flex;
  justify-content: space-between;
}

HTML-CSS Editor:

See the Pen html-css-practical-exercises by w3resource (@w3resource) on CodePen.


What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.

Share this Tutorial / Exercise on : Facebook and Twitter

HTML-CSS: Tips of the Day

How to get CSS to select ID that begins with a string ?

[id^=product]

^= indicates "starts with". Conversely, $= indicates "ends with".

The symbols are actually borrowed from Regex syntax, where ^ and $ mean "start of string" and "end of string" respectively.

Ref: https://bit.ly/3rSZ2t7