如何让元素随着文字多少自适应宽度?

<view class="test">

测试

</view>

.test{

display:flex;

align-items: center;

justify-content: center;

}

回答

.parent {

display: flex;

flex-wrap: wrap;

}

.test{

display:inline-flex;

align-items: center;

justify-content: center;

flex-shrink: 0;

}

你现在的写法就是自适应的,用padding撑开间距就行

以上是 如何让元素随着文字多少自适应宽度? 的全部内容, 来源链接: utcz.com/a/43044.html

回到顶部