Wyatt
Wyatt
  • 发布:2015-11-05 11:45
  • 更新:2016-04-21 15:45
  • 阅读:3289

mui switch是否可以自定义文字

分类:MUI

一个页面中,我要使用多个switch,但是有的想用“是否",有的想用”有无",是否可以自定义

2015-11-05 11:45 负责人:无 分享
已邀请:
y***@qq.com

y***@qq.com

                   .mui-switch:before {  
            font-size: 13px;  
            position: absolute;  
            top: 3px;  
            right: 11px;  
            content: '否';  
            text-transform: uppercase;  
            color: #999  
        }  
        .mui-switch.mui-active:before {  
            right: auto;  
            left: 15px;  
            content: '是';  
            color: #fff  
        }

该问题目前已经被锁定, 无法添加新回复