微信小程序記錄

垂直居中
.v-center{
	display: flex;
    flex-direction: row;
    align-items: center;
}
.v-center image{
	width:100px;
	height:100px;
}
.v-center text{
	margin-left:10px;
}

<view class="v-center">
	<image src="https://cdn-img.easyicon.net/image/2019/panda-index.svg"/>
	<text>垂直居中</text>
</view>	
view寬度根據內容自適應
.auto-width{
	width: fit-content;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章