Posts by Leandro Nascimento • 88 points
8 posts
-
-2
votes1
answer67
viewsQ: writeln is obsolete in Javascript or not?
I have a simple code example <html lang="en"> <head> <meta charset="UTF-8"> <title>teste</title> </head> <body> <script> var nome = "maria"; var…
-
0
votes2
answers821
viewsA: Are there possibilities to hide part of the html of the inspect?
I created an example for you NOTE is just for reading. The codes are all executed on console press Ctrl + shift + i. More can also put on tag <script> etc.. <html lang="pt-br">…
-
0
votes0
answers471
viewsQ: Is it better to work with min-width or max-width in CSS layout?
I’m creating some prototype responsive site. But what I noticed is that when I use min-width or max-width they do almost the same thing, although they determine a minimum width and a maximum I still…
cssasked Leandro Nascimento 88 -
-2
votes1
answer82
viewsQ: Why is the variable not accessed outside the function?
I know there is scope in javascript but in this case it is different the variable it is global follows the example. <html lang="en"> <head> <meta charset="UTF-8"> <meta…
-
0
votes2
answers152
viewsQ: How can "Transition" in CSS not occur when the page is updated?
I’ve been creating some transition in some projects and I ended up noticing that the transition occurs when the page is loaded or updated. I have this example where the transition is to occur only…
-
1
votes0
answers28
viewsQ: How does matrix3d() work in CSS?
Well, I know to work with matrix()is followed by 6 2D transformation methods in a single method. If I had the following code matrix(1, 0, 0, 1, 0, 0). Each number would represent a method that would…
-
1
votes1
answer66
viewsQ: Why doesn’t my Submenu show up?
I have this following code, only my submenu does not appear because? <!DOCTYPE html> <html lang="pt-br"> <head> <title>CSS Template</title> <meta charset="UTF-8">…
-
5
votes1
answer947
viewsQ: What is the effect that the overflow property: Hidden is doing on the code?
I have this very simple code down there. Only the problem is that if I take the property overflow of the code simply, add the background color and putting it again it appears because this is…