cursor
英 [ˈkɜ:sə(r)] 美 [ˈkɜ:rsə(r)]
#n.遊標
#css cursor屬性 語法
作用:cursor 屬性規定要顯示的遊標的類型(形狀)。此屬性定義了滑鼠指標放在一個元素邊界範圍內時所使用的遊標形狀(不過 CSS2.1 並沒有定義由哪個邊界決定這個範圍)。
說明:此屬性定義了滑鼠指標放在一個元素邊界範圍內時所使用的遊標形狀(不過 CSS2.1 沒有定義由哪個邊界決定這個範圍)。
註解:所有主流瀏覽器都支援 cursor 屬性。 Opera 9.3 和 Safari 3 不支援 url 值。任何版本的 Internet Explorer (包括 IE8)都不支援屬性值 "inherit"。
css cursor屬性 範例
<html> <body> <p>请把鼠标移动到单词上,可以看到鼠标指针发生变化:</p> <span style="cursor:auto"> Auto</span><br /> <span style="cursor:crosshair"> Crosshair</span><br /> <span style="cursor:default"> Default</span><br /> <span style="cursor:pointer"> Pointer</span><br /> <span style="cursor:move"> Move</span><br /> <span style="cursor:e-resize"> e-resize</span><br /> <span style="cursor:ne-resize"> ne-resize</span><br /> <span style="cursor:nw-resize"> nw-resize</span><br /> <span style="cursor:n-resize"> n-resize</span><br /> <span style="cursor:se-resize"> se-resize</span><br /> <span style="cursor:sw-resize"> sw-resize</span><br /> <span style="cursor:s-resize"> s-resize</span><br /> <span style="cursor:w-resize"> w-resize</span><br /> <span style="cursor:text"> text</span><br /> <span style="cursor:wait"> wait</span><br /> <span style="cursor:help"> help</span> </body> </html>
#點擊 "執行實例" 按鈕查看線上實例