I have searched for answers related to this topic, but so far I have not found any that are valid
Currently, I am utilizing Angular 7
as my Framework and running into a particular issue.
The components I have are: - Header - Landing
app.component.html
In my app.component.html
, I have configured both components to display continuously:
<app-header></app-header>
<router-outlet></router-outlet>
The header
component has a fixed height
of 80px, while the margin-top
of my router
is set to -80px
I attempted to overlay the image of my router
onto the header
using opacity
or rgba
, but the result did not meet my expectations (the header
background was not transparent enough to show the image text)
Does anyone have any suggestions?