Answers for "flex : 1 not working"

2

align items not working flex

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
Posted by: Guest on January-13-2021
0

html flex not working

<style>
.row {display:flex;}
.col {flex:1;}  
</style>

<div class="row">
  <div class="col content">some content</div>
  <div class="col content raw">some other content</div>
</div>
Posted by: Guest on January-01-2022

Browse Popular Code Answers by Language