(hover) background-color: ***;
ブラウザ |
|
---|---|
プロパティ |
background-color は、背景色を指定するプロパティです。
疑似クラス(:hover
)を指定したa要素にこのプロパティを設定すると、ポイントした時の背景色(リンクテキストの背景色)を指定できます。
a:hover {
background-color: #e0e0e0;
}
プロパティ名 | 値 | 説明 |
---|---|---|
background-color |
色 | 背景色を指定 (初期値は transparent ) |
色の指定については、CSSの色指定をご覧ください。
使用例
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>文書のタイトル</title>
<style type="text/css">
a:hover {
background-color: #ffd78c;
color: #2b2b2b;
}
</style>
</head>
<body>
<p><a href="index.html">リンクカテゴリー</a></p>
</body>
</html>
- 表示例