私は良い時間を探していましたが、誰も同じ問題を抱えていないようです.
リンクのテキストの色を灰色に変更しようとしていますが、青色に見えます。具体的には、リンクのクラス プロパティを設定することでこれを達成したいと考えています。(記録のために、私はこれらの方法の両方を試しましたが、うまくいきました)。
//Site.css
.grey {
color: grey;
}
.button-link2 {
padding: 10px 15px;
background: #EFEFEF;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-transition-duration: 0.2s;
-moz-transition-duration: 0.2s;
-transition-duration: 0.2s;
text-decoration: none;
cursor: pointer;
}
そして、私がそれを機能させたい方法のリンク:
<a id="btnCancel" href="CMS-contentlist.aspx" class="grey button-link2">Cancel</a>
前もって感謝します!