我有一個按鈕嵌入在我的導航欄,我想知道如何改變按鈕的字體顏色,而不改變導航欄文本顏色的其餘部分。更改按鈕字體的文本顏色,在導航欄內
按鈕是在灰色文本的綠色背景。需要使綠色的白色文字保持灰色,同時保持其他標籤文字爲灰色
.button2 {
-moz-appearance: none;
-webkit-appearance: none;
-o-appearance: none;
-ms-appearance: none;
appearance: none;
background: #82b440;
border-radius: 1em;
border: solid;
border-color: #82b440;
color: #82b440;
cursor: pointer;
display: inline-block;
height: 4em;
padding: 0em 1.3em;
letter-spacing: 1px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
font-size: 1.4em;
text-decoration-color: white;
-moz-transition: all 0.35s ease-in-out;
-webkit-transition: all 0.35s ease-in-out;
-o-transition: all 0.35s ease-in-out;
-ms-transition: all 0.35s ease-in-out;
transition: all 0.35s ease-in-out;
}
<div id="header">
<div class="container">
<!-- Logo -->
<a href="index">
<img src="images/Picture2.png">
</a>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="page">Other Page Text</a>
</li>
**
<li><a href="quote" class="button2">Button Text</a>
</li>**
</ul>
</nav>
</div>
</div>
我不太明白?你不能像剛纔那樣瞄準.button2類嗎?這將確保只有該按鈕(或具有相同類別的其他按鈕)受到影響。 –
'顏色:#82b440;'改變這一點。 – Scott
我試過了,它似乎是導航。 UL認證。 li字體顏色會明確地取代按鈕中的顏色更改。顏色:#82b440(綠色)實際上是無用的,因爲文本內的文本當前是灰色的,因爲那是導航。 UL認證。李。定義它是。 – Kyle