Home  >  Article  >  WeChat Applet  >  How to center pictures in WeChat mini program

How to center pictures in WeChat mini program

angryTom
angryTomOriginal
2020-03-23 10:07:5532717browse

How to center pictures in WeChat mini program

How to center the picture in the WeChat mini program

The main way to center the picture in the mini program is to write wxss (css) style to achieve it. The method is to set the parent component display to flexbox, and add justify-content: center; and align-items: center; to center the element horizontally and vertically.

Recommended learning: Small program development

The specific implementation method is as follows:

1. First write the wxml file and add a Picture


  
  

2. Then write the wxss file and add styles to the picture and its parent elements

page{
   height:100%
}
.imagesize{
 display:flex;                    //flex布局
 justify-content: center;         //水平轴线居中
 align-items:center;                //垂直居中
}
.imagesize image { 
  width:400rpx;
  height:400rpx;
}

3. The effect is as follows

How to center pictures in WeChat mini program

PHP Chinese website, a large number of navicat tutorials, welcome to learn!

The above is the detailed content of How to center pictures in WeChat mini program. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn