盒子宽度自适应文字内容
2024年4月29日...小于 1 分钟
效果描述
当文字多少不确定时,让盒子宽度自适应文字内容。
实现方法
为盒子设置 width:fit-content;
效果展示
::: normal-demo 效果演示
<div class="fit-content">我比较长</div>
<div class="fit-content">好短</div>
.fit-content{
width:fit-content;
border:1px solid black;
margin:10px;
}
:::
Powered by Waline v3.3.2