Answers for "css left right column same height"

CSS
0

css left right column same height

.col-container {
    display: table; /* Make the 
  container element behave like a table */
    width: 100%; /* 
  Set full-width to expand the whole page */
}

.col {
    
  display: table-cell; /* Make elements inside the container behave like table 
  cells */
}
Posted by: Guest on April-23-2021

Browse Popular Code Answers by Language