Currently, I am working on an Angular project where in my app.component.html file, I have various components like this:
<app-selector1></app-selector1>
<app-selector2></app-selector2>
...
I am trying to figure out how to make my component fill the entire screen using CSS (100% width & height of the window size). Despite all my efforts, I still notice a small space resembling margin or padding, although the inspector shows them as being set to 0.
One solution that I have attempted is:
body div {
position: relative;
width: inherit;
height: 100%;
left: 0;
}