1. 程式人生 > >HTML 標籤簡介

HTML 標籤簡介

<html>
  <head> 
    <title>設定滑鼠樣式</title> 
  </head> 
  <body> 
    <div style="font-family:宋體;font-size:10pt;">
    <span style="cursor:hand">手形狀</span><br> 
    <span style="cursor:move">移動</span><br>
    <span style="cursor:ne-resize">反方向</span><br>
    <span style="cursor:wait">等待</span><br>
    <span style="cursor:help">求助</span><br>
    <span style="cursor:text">文字</span><br>
    <span style="cursor:crosshair">十字</span><br>
    <span style="cursor:s-resize">箭頭朝下</span>
    </div> 
  </body>
</html>