Posts by Pedro Ramos • 80 points
3 posts
-
1
votes2
answers43
viewsA: Div doesn’t get 100% height
An approach would be to put in the class .conteudo a height of 100vh. The measure vh is also relative and is based on viewport. Each vh represents 1% of viewport. Test with the following css:…
-
1
votes2
answers38
viewsA: Doubt: Expressjs no front-end framework?
It is perfectly possible to make an application in Expressjs and serve content with some engine of these that you mentioned. There are even some tutorials on the Express documentation page itself,…
expressanswered Pedro Ramos 80 -
2
votes2
answers128
viewsA: Which type is inherited from an . NET array?
Microsoft documentation is good regarding this kind of doubt. I recommend that you always consult there. As we can see in the class documentation System.Array available here, this class implements…