Posts by Edson Luis Magaure • 1 point
3 posts
-
-1
votes1
answer548
viewsA: Limit body size to screen size
create a css or better within css create a . body{} within it define margin! Margin are responsible for the delimitation of the page with that all elements that you enter will follow and will not…
-
0
votes1
answer130
viewsA: How to show a whole image
This happens due to its css configuration, you manipulated the margins and you intend to load a large image in relation to the size of your page ! to >solve this you must manipulate the margin…
-
0
votes4
answers1407
viewsA: How to make elements appear and disappear with Js
<html> <head> <script src="jquery-2.2.2.min.js"> </script> <script> $(document).ready(function(){ $("#bt").click(function(){ $("p").hide(); })…