search
HomeWeb Front-endHTML TutorialCSS之cursor属性_html/css_WEB-ITnose

CSS之cursor属性 

今天学习了CSS的cursor属性,第一篇博客就用来总结它吧。

cursor属性用于控制光标的显示样式,可取的值有这些:

cursor:url()*|{auto|default|pointer|crosshair|text|vertical-text|help|not-allowed|no-drop|move|e-reszie|s-resize|w-resize|w-resize|n-resize|all-scroll|ne-resize|se-resize|nw-resize|sw-resize|col-resize|row-resize|}

*表示至少写一个该值,url后面可再选{}内的一个值。

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>CSS之cursor属性</title> 6     <style> 7     h2#auto{cursor:auto;} 8     h2#default{cursor:defaut;} 9     h2#hand{cursor:hand;}10     h2#pointer{cursor:pointer;}11     h2#text{cursor:text;}12     h2#crosshair{cursor:crosshair;}13     h2#move{cursor:move;}14     h2#wait{cursor:wait;}15     h2#progress{cursor:progress;}16     h2#help{cursor:help;}17     h3#ne-resize{cursor:ne-resize;}18     h3#nw-resize{cursor:nw-resize;}19     h3#n-resize{cursor:n-resize;}20     h3#se-resize{cursor:se-resize;}21     h3#sw-resize{cursor:sw-resize;}22     h3#s-resize{cursor:s-resize;}23     h3#w-resize{cursor:w-resize;}24     h3#e-resize{cursor:e-resize;}25     h2#vertical-text{cursor:vertical-text;}26     h2#not-allowed{cursor:not-allowed;}27     h2#no-drop{cursor:no-drop;}28     h3#col-resize{cursor: col-resize;}29     h3#row-resize{cursor: row-resize;}30     h3#all-scroll{cursor:all-scroll;}31     h2#url{cursor: url();}32     tr{border:1px solid red;}33   </style>34 </head>35 <body>36      <a href="http://www.baidu.com" target="_blank">百度</a>37      <h1 id="指示和选择光标">指示和选择光标</h1>38      <h2 id="auto-浏览器默认">auto:浏览器默认</h2>39      <h2 id="default-操作系统默认光标">default:操作系统默认光标</h2>40      <h2 id="hand-手型">hand:手型</h2>41      <h2 id="text-大写的I-水平文本选择">text:大写的I,水平文本选择</h2>42      <h2 id="vertical-text-大写的I-垂直文本选择">vertical-text:大写的I,垂直文本选择</h2>43      <h2 id="help-箭头加问号-获取帮助">help:箭头加问号,获取帮助</h2>44      <h2 id="pointer-手形-表示链接">pointer:手形,表示链接</h2>45      <h2 id="not-allowed-红色圆圈和斜杠-禁止操作">not-allowed:红色圆圈和斜杠,禁止操作</h2>46      <h2 id="no-drop-红色圆圈和斜杠-无法释放">no-drop:红色圆圈和斜杠,无法释放</h2>47      <h2 id="crosshair-十字瞄准-表示精确选择">crosshair:十字瞄准,表示精确选择</h2>48      <hr/>49      <h1 id="表程序状态">表程序状态</h1>50      <h2 id="wait-选转环-表示等待直到不忙-不能交互">wait:选转环,表示等待直到不忙,不能交互</h2>51      <h2 id="progress-箭头加旋转环-处理中-可以交互">progress:箭头加旋转环,处理中,可以交互</h2>52      53      <hr />54      <h1 id="move用于移动对象">move用于移动对象</h1>55      <h2 id="move-移动对象-两端带箭头的十字">move:移动对象,两端带箭头的十字</h2>56      <h3 id="all-scroll-移动">all-scroll:移动</h3>57      <h1 id="在四个角上改变窗口大小">在四个角上改变窗口大小</h1>58      <h3 id="ne-resize-向东-右-或-和北-上">ne-resize:向东(右)或/和北(上)</h3>59      <h3 id="sw-resize-向西-左-或-和南-下">sw-resize:向西(左)或/和南(下)</h3>60      <h3 id="nw-resize-向西-左-或-和北-上">nw-resize:向西(左)或/和北(上)</h3>61      <h3 id="se-resize-向东-右-或-和南-下">se-resize:向东(右)或/和南(下)</h3>62      <hr />63      <h1 id="在四条边上改变窗口大小">在四条边上改变窗口大小</h1>64      <h2 id="东西用于改变水平宽度">东西用于改变水平宽度</h2>65      <h3 id="e-resize-向东-右">e-resize:向东(右)</h3>66      <h3 id="w-resize-向西-左">w-resize:向西(左)</h3>67      <h2 id="南北用于改变垂直高度">南北用于改变垂直高度</h2>68      <h3 id="s-resize-向南-下">s-resize:向南(下)</h3>69      <h3 id="n-resize-向北-上">n-resize:向北(上)</h3>70      <h3 id="col-resize-改变列宽">col-resize:改变列宽</h3>71      <h3 id="row-resize-改变行高">row-resize:改变行高</h3> 72 </body>73 </html>

 

还有几个属性值没有弄清楚:hand url col-resize row-resize  弄清楚了再在修改博客。

第一次写博客,各种不熟悉。学的也不够扎实,欢迎指正。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.