JavaScript
2
Вклад в тег
ul{
display: flex;
}
li{
cursor: pointer;
}
li:hover .block{
height: 100px;
}
.block{
background: black;
width:100px;
height: 0px;
transition: height 1s;
}
</style>
<ul>
<li>
<p href="">шашлыки</>
<div class="block"> </div>
</li>
<li><p href="">шашлыки</></li>
</ul>
</body>