你好 uniapp遇到如下问题 cell单元格上下均有边框 请帮我去除边框 代码如下u-cell-group u-cell title=个人中心 isLink=true u-icon slot=icon size=26 color=#000 name=account-fillu-icon u-cell u-cell
你好!如果你想要去除cell单元格的上下边框,可以在样式中添加以下代码:
.u-cell-group .u-cell:first-child {
border-top: none;
}
.u-cell-group .u-cell:last-child {
border-bottom: none;
}
将以上代码添加到你的样式文件中,即可去除cell单元格的上下边框。希望能帮到你!
原文地址: https://www.cveoy.top/t/topic/iE3d 著作权归作者所有。请勿转载和采集!