I have following piece of CSS code:
#balancers div p {
display: none;
}
#balancers div:hover p {
display: block;
}
And markup:
<div id="balancers">
<h1>ID</h1>
<p>Description</p>
</div>
It works as expected - when I hover over <div>
element, it'll show <p>
element. However, I'd like to use CSS transitions here (make <div>
slowly increase it's height, without manipulating height
property).
How can I do that?