8

ホバー時にボタン内のテキストの色を変更しようとしています。

ボタン自体の色を変えることもできますが、ボタンのテキストの色も変えたいです。

これが私の現在のcssです:

button,
input.button,
a.button,
input[type="submit"] {
background:#2e77ae;
background: -moz-linear-gradient(top, #5590bd, #2e77ae);
background: -webkit-linear-gradient(top, #5590bd, #2e77ae);
background: -o-linear-gradient(top, #5590bd, #2e77ae);
background: -ms-linear-gradient(top, #5590bd, #2e77ae);
background: linear-gradient(top, #5590bd, #2e77ae);
border-color:#2e77ae;}

button:hover,
input.button:hover,
a.button:hover,
input[type="submit"]:hover{

    background:#E6D332;
    background: -moz-linear-gradient(top, #E6D332, #E6D332);
    background: -webkit-linear-gradient(top, #E6D332, #E6D332);
    background: -ms-linear-gradient(top, #E6D332, #E6D332);
    background: linear-gradient(top, #E6D332, #E6D332);
    border-color:#2e77ae;}



button:focus,
input.button:focus,
a.button:focus,
input[type="submit"]:focus { 
    background-color:#E6D332;}
4

5 に答える 5

7

CSSプロパティcolorは、要素のテキストの色を一般的に制御します。あなたの場合、ホバー時に色を変更するには、:hover指定子を使用します。

input[type = "submit"]:hover {
    color: #FF0000;
    //you can add more styles to be applied on hover
}

rgb(x, y, z)フォーマットを使用して色を指定することもできることに注意してください。これが説明するための小さなデモです:小さなリンク。デモを試して、ここでソースを表示できます:別の小さなリンク

お役に立てば幸いです。

于 2012-08-27T09:47:54.960 に答える
2

テキストの色を変更したい場合は、次のcolorように CSS プロパティを使用します。

input[type="submit"]:hover{
   color :#E6D332; 
}
于 2012-08-27T09:42:01.027 に答える
0

p.one{
    color: DarkBlue}
p.one:hover{
    color: yellow}
<html>
    <head>
        <title>Css Help</title>
    <head>
    <body>
        <p class="one">Example TextExample TextExample TextExample TextExample TextExample TextExample TextExample TextExample TextExample TextExample TextExample TextExample TextExample TextExample TextExample TextExample TextExample Text<p>
    </body>
<html>

これが私がすることです:

a:hover{
    color: #ffffff;
}

「a」を段落「p」などに変更するか、クラスを含むhtmlファイルに指定できます

<p class="one">Example</p>

CSS ファイル内のそれらは次のことを行います。

p.one:hover{
    color: #ffffff;
}

お役に立てれば幸いです。

于 2015-03-23T23:42:40.387 に答える
-1

color:#(insert text color)これを入れて

于 2012-08-27T09:42:52.053 に答える