我的目标是DIV的大小(高度)将根据DIV上的文本进行调整(同时保持最小高度)。
但如果用户将鼠标移到DIV上,DIV会正确地改变其高度,而不会失去过渡的优美效果
如果我将height: fit-content;
更改为固定大小,假设为height: 100px;
,过渡动画工作,但div高度不一定与DIV上的文本匹配。
<!DOCTYPE html>
<html>
<head>
<style>
div {
border-style: solid;
border-width: 1px;
width: 200px;
height: fit-content;
min-height: 50px;
background-color: #0000ff;
transition: 0.5s;
}
div:hover {
background-color: #ffcccc;
width: 200px;
height: 300px;
}
</style>
</head>
<body>
<div>Lorem ipsum dolor sit amet</div>
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer tincidunt justo rutrum tellus congue convallis Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer tincidunt justo rutrum tellus congue convallis</div>
</body>
</html>
2条答案
按热度按时间tmb3ates1#
我相信您可以通过使用
min-height
来处理这种情况。请参见下面的代码片段:如果元素的高度不固定并且需要过渡,则应使用
min-hegith
或max-height
。3ks5zfa02#
你可以动画填充而不是高度,你可以保持漂亮的动画:)