본문 바로가기

카테고리 없음

[CSS] a태그 마우스 오버 : a:hover

반응형

[CSS] a태그 마우스 오버 : a:hover



 a_hover.php

<html>
<title>
    a태그 마우스 오버
</title>
<head>
<style>
    #bold a:hover { font-weight:bold;color:#FF0000; }
</style>
</head>
<body>
    <div id="bold"><a href="http://wickedmagic.tistory.com/">사악미소의 현대마법의 공방</a></div>
</body>
</html>

 출력화면


반응형