CSS CSS Tutorial CSS Advanced CSS Responsive Web Design(RWD) CSS Grid CSS Properties Sass Tutorial Sass Functions



flex-basis

Flexbox is a powerful layout tool in CSS that allows developers to create flexible and responsive layouts. One of the key properties in flexbox is flex-basis, which defines the initial size of a flex item before any remaining space is distributed.

The flex-basis property is used in conjunction with the flex-grow and flex-shrink properties to determine how flex items should be sized and distributed within a flex container. The flex-basis property specifies the default size of a flex item, while flex-grow and flex-shrink determine how much the item should grow or shrink to fill available space.

The flex-basis property can be set to a length value, such as pixels or percentages, or to the keyword auto. When set to a length value, the flex item will be sized to that specific width or height. When set to auto, the flex item will be sized based on its content.

Here is an example of how to use the flex-basis property:

<div class="container">
  <div class="item item1">Item 1</div>
  <div class="item item2">Item 2</div>
  <div class="item item3">Item 3</div>
</div>

.container {
  display: flex;
}

.item {
  flex-basis: 100px;
  flex-grow: 1;
  flex-shrink: 1;
}

.item1 {
  background-color: red;
}

.item2 {
  background-color: green;
}

.item3 {
  background-color: blue;
}

In this example, we have a flex container with three flex items. Each item has a flex-basis of 100 pixels, which means that they will be initially sized to 100 pixels wide. The flex-grow and flex-shrink properties are set to 1, which means that the items will grow or shrink equally to fill available space.

Here is another example that uses flex-basis with percentage values:

<div class="container">
  <div class="item item1">Item 1</div>
  <div class="item item2">Item 2</div>
  <div class="item item3">Item 3</div>
</div>

.container {
  display: flex;
}

.item {
  flex-basis: 33.33%;
  flex-grow: 1;
  flex-shrink: 1;
}

.item1 {
  background-color: red;
}

.item2 {
  background-color: green;
}

.item3 {
  background-color: blue;
}

In this example, each flex item has a flex-basis of 33.33%, which means that they will be initially sized to one-third of the available space. The flex-grow and flex-shrink properties are set to 1, which means that the items will grow or shrink equally to fill available space.

Overall, the flex-basis property is a powerful tool in CSS that allows developers to create flexible and responsive layouts using flexbox. By combining flex-basis with flex-grow and flex-shrink, developers can create complex layouts that adapt to different screen sizes and devices.

References

Activity