Answers for "height to the full of parent container"

4

stretch div to full height

#root {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
Posted by: Guest on November-06-2020
1

css fill parent height

html, body {
  height: 100%
}
body {
  display: flex;
  align-items: stretch;
}

#root {
  width: 100%
}
Posted by: Guest on November-18-2020

Code answers related to "height to the full of parent container"

Browse Popular Code Answers by Language