css flex Две колонки равной ширины, пример
Primary tabs
Forums:
<div class='root'>
<div class='column'>Column1 fffffffff sfdfs </div>
<div class='column'>Column2</div>
</div>CSS:
.root {
color: blue;
margin: 20px;
background-color: blanchedalmond;
width: 200px;
border-radius: 8px;
padding: 5px;
display: flex;
flex-direction: row;
}
.column {
background-color: beige;
flex: 1;
}
.column:not(:first-child) {
margin-left: 10px;
}
- Log in to post comments
- 2579 reads