Posts by Bruno Santana • 11 points
2 posts
-
0
votes3
answers11209
viewsA: Centering using the Absolute position
div{ position: absolute; left: 50%; margin-left: -50px; width: 100px; height: 100px; background: red; } This snippet of code should solve your problem.…
-
1
votes0
answers9
viewsQ: use variable in . eq
I need to put the value of a variable in the method . eq, this variable takes an integer value. But it doesn’t work. I’ve tried several ways and nothing. $(document).ready(function(){ i = 0; for(i =…