vue/uniapp中选中时有边框和背景色的选项卡如何实现

原帖中提供的代码不能实现选中时有边框和背景色的效果。下面是用 html 实现这种效果的代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body> <style> .tabs { display: flex; justify-content: space-between; flex-direction: row; background-color: #E1E1E1; border-radius: 82px; height: 82px; } .tab { font-size: 36px; color: rgba(69, 69, 68, 1); width: 100%; text-align: center; line-height: 82px; } .tab.active { color: rgba(255, 255, 255, 1); background-color: #31BDEC; border-radius: 82px; } </style> </html>
登录后复制

效果如下:
[图片]

以上就是Vue/UniApp 选项卡选中时如何添加边框和背景色?的详细内容,更多请关注慧达安全导航其它相关文章!

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部