13 lines
166 B
CSS
13 lines
166 B
CSS
|
main>section {
|
||
|
display: flex;
|
||
|
align-items:center;
|
||
|
justify-content:space-between;
|
||
|
}
|
||
|
|
||
|
section > section {
|
||
|
width: 25%;
|
||
|
}
|
||
|
section > section + section {
|
||
|
width: 50%;
|
||
|
}
|