Posts by Michael Charles • 61 points
3 posts
-
1
votes1
answer30
viewsA: Leave the Html page according to which the browser window will decrease or increase
Hello The question is a bit hazy. But if it is relative to height and width, you can use measures relative to vw and vh. Vw stands for Viewport Wirth which sets the width according to display screen…
htmlanswered Michael Charles 61 -
4
votes1
answer34
viewsA: What does that mean?
Hello You are using the getelementsbytagname method that searches for all elements whose tag matches the one entered in the parameter. This method should return an array of elements. More details of…
javascriptanswered Michael Charles 61 -
1
votes2
answers291
viewsA: Is it possible to pass a formgroup to the parent component?
Communication between components can be done either parent to child or inverse. However, from what I understand of your problem, the appropriate solution is through Viewchild. But remember the…