I've tested this code in multiple browsers, but it still isn't functioning correctly. Can anyone help me identify the error?
<style>
.result{
width: 200px;
height: 300px;
background: #ff0000;
}
.result #add{
display:none;
}
.result:hover #add{
-webkit-transition: top 1s ease-out 1.5s;
-moz-transition: top 1s ease-out 1.5s;
transition: top 1s ease-out 1.5s;
display:block;
}
</style>
<div class="result">
<div id="add">111</div>
</div>