Posts by Ivo Silva • 161 points
3 posts
-
1
votes1
answer305
viewsA: Parking system
Try to change this line: var botao = document.querySelector("botaoEnviar"); To: var botao = document.querySelector("#botaoEnviar"); If you want to select by id, you must specify the prefix #. If you…
javascriptanswered Ivo Silva 161 -
2
votes1
answer275
viewsA: How to compare two fields of identical values to different sizes?
I wonder if you wanted to make one SELECT, then just put it on SELECT in large print: SELECT CNES FROM Table Or for example if you want to select the two: SELECT cnes,CNES FROM Table But I think for…
-
0
votes2
answers108
viewsA: What does the syntax "14px/1" mean in font size declaration?
This is an abbreviated form for the same code below the font property: font-family: Arial font-size: 14px; line-height: 1; This is the syntax of the font property according to the w3schools: font:…