WeChat applet page fills the entire screen with content

The WeChat applet page fills the entire screen with content centered

wxml page code

 	<view class="empty_tip ">
	      <image class="" src="../../image/empty_cart.png" mode="widthFix"></image>
	      <view class="classname">购物车竟然是空的</view>
	      <view class="color_888888">快去首页瞧瞧吧</view>
   	 </view>

wxss style code

.empty_tip{
  position: fixed;
  height: 100%;
  width: 100%;
  display:flex;
  flex-direction:column;
  align-items:center;/*垂直居中*/
  justify-content: center;/*水平居中*/
}

Original link

Released nine original articles · won praise 0 · Views 6128

Guess you like

Origin blog.csdn.net/gx8201/article/details/89879046