Posts by AntonioLima • 50 points
4 posts
-
0
votes2
answers127
viewsA: How to remove only the horizontal scrollbar from the page?
You could try it that way, Jeanextreme002. ::-Webkit-scrollbar { overflow-y:Hidden; }
-
0
votes1
answer176
viewsA: Use onmouseover to change the color of created Ivs with createelement
Inside the Button, add the click event this way "onclick="creatDiv();". <script> function criarDiv() { var quadradoElement = document.createElement('div');…
javascriptanswered AntonioLima 50 -
1
votes2
answers234
viewsA: Margin-top does not push div down
Try changing the margin to padding. .side-menu-user-infos { background: #FFF; display: block; height: 190px; border-bottom: 1px solid rgb(155, 158, 162); position: relative; **padding: 15px auto;**…
-
2
votes1
answer2005
viewsQ: How to create a mvc project in visual studio code
I’m starting to learn how to develop for web with c# in visual studio code. I am trying to create a web project, the problem is that the command I am using "dotnet new MVC -the Folder Name " already…