Posts by Zeno Junior • 116 points
4 posts
-
0
votes3
answers46057
viewsA: Footer at the end of the document
The method you need is well known as "Sticky Footer". Even, if you use a framework like Bootstrap, you can do it with only one organization in formatting and one class. Maybe this is what you want:…
-
1
votes2
answers340
viewsA: How to make after a while the color of a div change
I don’t know if it’s useful for you, but depending on the case you can do it with CSS using key-frames. Demo: https://jsfiddle.net/94pgnr6v/ HTML: <div class="sua-div-aqui"> </div> CSS:…
-
8
votes18
answers139957
viewsA: What is the best way to center an element vertically and horizontally?
For me, it is currently the best form because it allows elements with non-standard height, allowing a greater dynamics. HTML: <section> <article> Centro </article> </section>…
-
1
votes2
answers677
viewsQ: Center vertically DIV without fixed height in CSS
There are several ways to center the content of a <div> vertically. However, when dealing with a height other than pixels, people begin to wonder if there is an efficient method for this. I…