transition all properties css code example
Example 1: css transition all
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
-ms-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
Example 2: display transition css
div {
background-color: blue;
padding: 40px;
color: white;
cursor: pointer;
transition: all .1s ease;
}
.hidden {
visibility: hidden;
opacity: 0;
max-height: 0%;
}
.hidden:hover {
visibility: visible;
opacity: 1;
max-height: 1000px;
}
<div class="hidden"></div>