CSS 코드: 마우스 오버 시 테두리 변경
저자:Eve Cole
업데이트 시간:2009-06-12 19:27:29
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<html xmlns=" http://www.w3.org/1999/xhtml ">
<머리>
<title>제목 없는 문서</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<스타일 유형="텍스트/css">
p#외부 {
위치:상대적;
부동:왼쪽;
여백 상단:20px;
여백-왼쪽:20px;
배경: 파란색;
}
#외부 {
여백:0;
배경색:파란색;
표시:블록;
위치: 상대;
테두리:2px 빨간색 점선;
}
#외부 a:hover {테두리:2px 점선 #CCFFCC;}
#outer img {디스플레이:블록;테두리:없음;배경:#ffffcc;패딩:4px;}
</style>
</head>
<본문>
<h1>이중 테두리 효과를 보려면 이미지 위로 마우스를 가져가세요</h1>
<p id="outer"><a href="#"><img src="</p>
</body>
</html>