<div class="block">
<code>transition: width .2s ease-out .15s</code>
</div>
<div class="block block2">
<code>transition: width, color .2s ease-out .15s</code>
</div>
body {
padding: 36px;
}
.block {
width: 400px;
background-color: gold;
color: #444;
font-size: 15px;
padding: 16px 8px;
transition: width .62s ease-out .15s;
margin-bottom: 36px;
}
.block2 {
transition-property: width, color;
}
.block:hover {
width: 425px;
color: red;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.