关于光标属性cursor

光标的形状取值主要有以下几种:

default,默认光标;hand,竖起一只手指的手形光标;crosshair,简单的十字线光标;

text,大写字母I的形状;wait,用于标示程序忙用户需要等待的光标。

举例如下:

<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=gb2312"/>
<title></title>
<style type="text/css">
<!--
.l{
font-size:12px;
line-height:25px;
}
ol{
list-style-image:url(images/closel.gif);
cursor:wait;
}
-->
</style>
</head>
<body>
<ol class="l">
<li>我们应该团结</li></br>
<li>我们应该团结</li></br>
<li>我们应该团结</li></br>
</ol>
</body>
</html>
时间: 2024-10-18 01:11:36

关于光标属性cursor的相关文章

HTML - 鼠标光标属性

<html> <head><title>鼠标光标属性</title> <style> .one{ cursor: help ; } .two{ cursor: move ; } .three{ cursor: hand ; } .four{ cursor: crosshair ; } .five{ cursor: wait ; } </style> </head> <body> <p class=&quo

css 浮动问题 display显示 和 光标设置cursor

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>浮动 和 显示方式</title> <style> h1{ text-align: center; } p{ background: pink; } .a{ border: 1px solid red; height: 230px; } .a>img{ height: 200px;

CSS光标属性一览表

光标类型 CSS 把你的光标放到相应文字上查看效果 要注意光标的实际效果依赖于用户的系统设置,与你在这里看到的效果并不一定一致. 十字准心 cursor: crosshair; 手 cursor: pointer; cursor: hand;写两个是为了照顾IE5,它只认hand. 等待/沙漏 cursor: wait; 帮助 cursor: help; 无法释放 cursor: no-drop; 文字/编辑 cursor: text; 可移动对象 cursor: move; 向上改变大小(No

CSS中常用的属性

字体属性 Font-family 字体族科 Font-size  字体大小 Font-style  字体样式 Font-weight 字体加粗  normal |bold(加粗)|lighter(变细) Font-variant 字体变形   normal|small-caps Font:[字体风格] [字体变形] [字体加粗] <字体大小>[/行高] <字体族科> 颜色属性 Color 背景属性 Background-repeat: 背景重复 Repeat-x(x轴方向重复) |

边框,光标和列表样式

光标属性: cursor:pointer|wait|help|progress;   光标变成手掌|转圈|问号|带箭头的问号 边框属性: border-color:red; border-width:20px; border-style:none|solid|dotted|dashed|double|inset|outset;   无边框|实线|以点构成的边框|虚线边框|双线边框|凹|凸 以下是边框样式的效果: border-style:solid;  : border-style:dotted

常见CSS属性及值

PHP程序员必须掌握的常见CSS属性及值: 一.内容简介: 1. 字体 2. 文本 3. 背景 4. 位置 5. 边框 6. 列表 7. 其他 二.CSS中修饰字体的属性 属性 描述 属性值 Font-family 字体族科 任意字体族科名称都可以使用Times.serif等,而且多个族科的赋值是可以使用的,中间用逗号分隔开,以防止选择不存在的字体族科. Font-size 字体大小 可以使用绝对大小.相对大小.长度或百分比 Font-style 字体风格 Normal(普通).italic(斜

css常见属性和属性值

CSS常见属性和属性值 字体属性 Font-family 字体族科  宋体|微软雅黑 Font-size  字体大小 Font-style  字体样式  normal|italic(倾斜)|oblique(斜体) 不是所有的字体都支持倾斜 如果没有倾斜那么你就必须使用斜体来代替倾斜 Font-weight 字体加粗  normal |bold(加粗)|lighter(变细) Font-variant 字体变形   normal|small-caps Font:[字体风格] [字体变形] [字体加

css 02

Css 02 Url  ./  http://www. Src  引入 拿取过来内容 Href 引用 连接前往 a  link 现在所有的命名 请按照下面我说的去命名 可以使用字母 数字 下划线组成  但是不能以数字开头 一.CSS常用属性 颜色属性 Color 背景属性 text-indent:21.0pt">Background-image: 背景图片 Background-repeat: 背景重复 Repeat-x(x轴方向重复) | repeat-y(y轴方向重复) |no-rep

CSS(二)

一.CSS常用属性 1. 颜色属性    Color 2. 背景属性 background-image: 背景图片 Background-repeat: 背景重复 Repeat-x(x轴方向重复) | repeat-y(y轴方向重复) |no-repeat(不重复) Background-attachment: 背景附件 scroll(默认值)  fixed(固定) Background-position:背景位置 Left|center|right( 横向) Top|center|bottom