/* 分页样式 */ .el-pagination { display: flex; justify-content: center; margin-top: 20px; } .el-pagination .el-pager { margin: 0 10px; font-size: 14px; color: #333; border-color: #dcdfe6; border-radius: 2px; cursor: pointer; transition: all .3s; } .el-pagination .el-pager:hover, .el-pagination .el-pager.is-active { color: #fff; background-color: #409EFF; border-color: #409EFF; }修改页码样式为背景颜色白色, 圆形
时间: 2024-03-01 21:53:55 浏览: 374
分页样式
您可以将.el-pager的样式修改如下:
```css
.el-pagination .el-pager {
margin: 0 10px;
font-size: 14px;
color: #333;
background-color: #fff;
border-color: #dcdfe6;
border-radius: 50%;
cursor: pointer;
transition: all .3s;
height: 24px;
width: 24px;
display: flex;
align-items: center;
justify-content: center;
}
```
这样就可以将页码的样式修改为白色背景,圆形形状了。需要注意的是,由于圆形的样式需要设置固定的高度和宽度才能生效,所以在样式中添加了height和width属性,并将页码的内容居中显示。
阅读全文