Answers for "angular set encapsulated body to full height"

CSS
0

angular set encapsulated body to full height

/*inside the component.css which html you want to be rendered full screen*/

:host {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
Posted by: Guest on August-21-2021

Browse Popular Code Answers by Language