uni-app框架如何实现html的a标签【下划线、鼠标移上去变色等功能】及CSS的伪类【如:hover类】使用方法总结

<text  @tap="register">立即注册</text>


  text {
            color: #f40;
            text-decoration:underline;
        }
        text:hover {
            color: #0A8DE7;
        }

点击跳转参数:https://blog.csdn.net/weixin_43343144/article/details/105531848

关于伪类:https://www.w3school.com.cn/css/css_pseudo_classes.asp

官方文档:https://developer.mozilla.org/zh-CN/docs/Web/CSS/Reference


版权声明:本文为weixin_43343144原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。