Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #angular #set #encapsulated #body #full #height
ADD COMMENT
Topic
Name
7+6 =