.NET프로그래밍/CSS 2.0

16. 커서관련스타일

holland14 2009. 7. 28. 12:00

<!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">
<head>
       <title>커서≒마우스 포인터≒캐럿</title>
</head>
<body>

       <a href="#" style="cursor:default;">기본값</a><br />
       <a href="#" style="cursor:auto;">자동으로 커서 설정</a><br />
       <a href="#" style="cursor:help;">도움말</a><br />
       <a href="#" style="cursor:crosshair;">+표시</a><br />
       <a href="#" style="cursor:pointer;">손모양</a><br />
       <a href="#" style="cursor:wait;">모래시계</a><br />
       <a href="#" style="cursor:text;">텍스트</a><br />
       <a href="#" style="cursor:move;">움직임</a><br />

</body>
</html>


< 실행결과 >
--> 마우스 포인터를 해당 텍스트에 갖다대면 해당되는 모양으로 변함.