table上下对齐,径向渐变,swiper使用的一个注意事项

来源:互联网 发布:家庭网络如何共享文件 编辑:程序博客网 时间:2024/06/05 15:52

table上下对齐:

#table1{

table-layout:fixed;

}

径向渐变:

#circle{

background-image:radial-gradient(circle,white 50%,red 50%);

}

swiper使用的一个注意事项:

如果把类名swiper-contener改了之后,要给这个元素添加一个属性:overflow:hidden。

0 0