1

在 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;
}
4

1 回答 1

1

您可以通过设置主要样式,setStyleAttributes但不能设置悬停和焦点等伪选择器样式。

于 2013-04-21T17:12:54.050 回答