如何将颜色更改为div中的链接?

时间:2015-10-17 13:54:19

标签: css

我已创建(从在线工具中复制和编辑)带有文字here on the botton right corner的小方框

我想更改框中文字的颜色。但是命令a:link,a:visited。

如何绕过这些命令并将颜色提供给文本,保持链接?

由于

2 个答案:

答案 0 :(得分:0)

在styles.css文件第77行的规则之后放了这个:

self.addEventListener('push', function(event) {
  // this function should return promise always
}

答案 1 :(得分:0)

伪选择器作为a:link和a:hover(以及更多)更改浏览器的默认行为。你可以省略它们,但我很确定你不想这样做。

a:链接设置锚点的样式,因此它不是默认的蓝色下划线。

a:当您将鼠标移到链接上时,hover设置锚点的样式。

使用您选择的搜索引擎了解更多信息,请尝试'css伪选择器'

阅读代码,颜色设置都在那里:

.button {
    display: inline-block;  
    text-align: center;
    vertical-align: middle;
    padding: 12px 24px; 
    border: 1px solid #28A26B;
    border-radius: 8px;
    background: transparent 
            linear-gradient(to bottom, #FFF, #FFF)
            repeat scroll 0% 0%; 
            // this is what you're probably 
            // looking for - the color of the button body.
            // It's set to transparent.
    font: bold 20px arial;
    color: #28A26B;  // Color of the content
    text-decoration: none;
}
.button:hover, .button:focus {
    // these pseudo classes just make the js events onmouseover
    // and onclick obsolete...
    color: #28A26B; 
    text-decoration: none;

}

将背景设置为您选择的颜色,删除渐变部分,您就完成了。不要盲目复制。