请问div {border:1px solid #00FF00;width:100px;text-align:center;cursor:hand;}这个语句是什么意思?
发布网友
发布时间:2022-05-22 20:13
我来回答
共1个回答
热心网友
时间:2023-10-08 18:07
border
语法:
border : border-width || border-style || border-color
参数:
该属性是复合属性。请参阅各参数对应的属性。
border-width
语法:
border-width : medium | thin | thick | length
参数:
medium : 默认宽度
thin : 小于默认宽度
thick : 大于默认宽度
length : 由浮点数字和单位标识符组成的长度值。不可为负值。
border-style
语法:
border-style : none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset
参数:
none : 无边框。与任何指定的border-width值无关
hidden : 隐藏边框。IE不支持
dotted : 在MAC平台上IE4+与WINDOWS和UNIX平台上IE5.5+为点线。否则为实线
dashed : 在MAC平台上IE4+与WINDOWS和UNIX平台上IE5.5+为虚线。否则为实线
solid : 实线边框
double : 双线边框。两条单线与其间隔的和等于指定的border-width值
groove : 根据border-color的值画3D凹槽
ridge : 根据border-color的值画菱形边框
inset : 根据border-color的值画3D凹边
outset : 根据border-color的值画3D凸边
border-color
语法:
border-color : color
参数:
color : 指定颜色。请参阅颜色单位和附录:颜色表
width
语法:
width : auto | length
参数:
auto : 无特殊定位,根据HTML定位规则载文档流中分配
length : 由浮点数字和单位标识符组成的长度值,或者百分数。百分数是基于父对象的宽度。不可为负数。
text-align
语法:
text-align : left | right | center | justify
参数:
left : 左对齐
right : 右对齐
center : 居中
justify : 两端对齐
cursor
语法:
cursor : auto | crosshair | default | hand | move | help | wait | text | w-resize |s-resize | n-resize |e-resize | ne-resize |sw-resize | se-resize | nw-resize |pointer | url (url)
参数: crosshair default hand pointer
move help wait text
w-resize s-resize n-resize e-resize
ne-resize sw-resize se-resize nw-resize
auto url(img/1001.gif)
设置不同的鼠标形状。