HTML HTML5 HTMLタグ スマートフォン |
CSS CSSプロパティ CSS・HTML便利ツール |
HTML色見本 配色組み合わせツール 特殊文字 |
JAVA Android |
PHP Smarty修飾子 EXCEL |
a:link.test1 { background-color:blue;color:white; } a:visited.test1 { background-color:blue; color:white; } a:hover.test1 { background-color:green;color:white; } a.test2 { background-color:red; color:white; } a:hover.test2 { background-color:pink; color:white; }
<a href="./blank.html" class="test1">あいえお</a> <a href="./blank.html" class="test2">かきくけこ</a>
.test3 a { background-color:blue; color:white; } .test3 a:hover { background-color:skyblue; color:white; } .test4 a:link { background-color:red; color:white; padding:5px; } .test4 a:hover { background-color:pink; color:white; padding:5px; }
<div class="test3"> <a href="./blank.html">あいえお</a> </div> <div class="test4"> <a href="./blank.html">かきくけこ</a> </div>