其他分享
首页 > 其他分享> > HTML/CSS(笔记4)

HTML/CSS(笔记4)

作者:互联网

一、Swiper方法

pagination: { el: '.swiper-pagination', },   分页器

nextEl: '.swiper-button-next'  前进按钮 

prevEl: '.swiper-button-prev'  后退按钮 

scrollbar: { el: '.swiper-scrollbar', }, 滚动条

二、CSS语法

justify-content:flex-end  项目位于容器的开头

justify-content:center 项目位于容器中央

justify-content:flex-start  项目位于容器开端

justify-content:space-aroud 项目在行之前、行之间和行之后留有空间

div{

display:flex;

justify-content:center;

}                   在容器中央对齐弹性项目:

 

                                                                                                                                                                  

标签:flex,容器,项目,笔记,content,HTML,CSS,swiper,justify
来源: https://www.cnblogs.com/1204cxl/p/15497129.html