1
Hello, I would like to make a little responsive animation to show information.
For example, I have this rectangle:
<div id="mainDiv" >
<div id="Rectangle" style="width: 200px; height: 300px; background: #3c9e43; margin-left: 20px; margin-top: 30px; float: left;"></div>
</div>
And when you hover your mouse over a little div showed information, and when the mouse came out there would be an animation of it lowering, like this:
I’d like to know a way to get to that.
Add
overflow: hidden;
to#content
in CSS and will have a much more pleasant result.– Woss
Perfect, thanks @Andersoncarloswoss.
– BrTkCa