Posts by Luan Tonin Galvan • 39 points
3 posts
-
0
votes1
answer46
viewsA: How do I display a message below my form without redirect? NOTE I do not use database
Create an html element without any content inside the place where the message will be displayed. <div id="message"></div> there in this javascript that you are running put…
-
0
votes1
answer51
viewsA: How to remove the blue edge of a video from a website?
seems to be an edge when focusing, try to grab the element containing the video and use the pseudo selector Focus by removing the Outline :focus { outline: none; }
htmlanswered Luan Tonin Galvan 39 -
0
votes4
answers666
viewsA: How do I get an image to cross the boundaries of a DIV
I would do a different way, create a div called . container and for this would put a margin of 20px auto. This way you can extend the image over the entire width and when you want the element to…