在 UiApp 中,href 小部件的默认样式是经典的蓝色下划线。是否可以像使用 css 样式表和 html 一样为此定义一种新样式?
例如:正常黑色的链接,悬停时变灰?
这是我在 css 中的做法:
h1 a:link, h1 a:active, h1 a:visited {
color: #111;
text-decoration: none;
}
h1 span {
color: #111;
}
h1 a:hover, h1 a:focus {
color: #777;
}