css怎么写箭头

1.css鼠标放上去把箭头变成手一样的样式怎么写【css怎么写箭头】任意标签中插入 style="cursor:hand"
多种形状可供选择
hand是手型
pointer也是手型,这里推荐使用这种,因为这可以在多种浏览器下使用 。
crosshair是十字型
text是移动到文本上的那种效果
wait是等待的那种效果
default是默认效果
help是问号
e-resize是向右的箭头
ne-resize是向右上的箭头
n-resize是向上的箭头
nw-resize是向左上的箭头
w-resize是向左的箭头
sw-resize是左下的箭头
s-resize是向下的箭头
se-resize是向右下的箭头
auto是由系统自动给出效果
2.html中这种箭头怎么实现除了图标(图片、bootstrap fontawesome字体)之外,还通过CSS的border属性设置可以实现箭头效果 。
HTML结构: ◆ ◆ 78 CSS:.item-num-wrap { float: left; margin-right: 10px; width: 36px; height: 19px; line-height: 19px; text-align: center; border: 1px solid #dcdcdc; background: #fff; position: relative; } .arrow-outer, .arrow-inner { position: absolute; /*在一个声明中设置所有字体属性 Unicode编码\5b8b\4f53表示宋体*/ font: 400 12px/19px simsun \5b8b\4f53; width: 12px; overflow: hidden; } .arrow-outer { color: #dcdcdc; top: 1px; right: -7px; } .arrow-inner { color: #fff; top: 1px; right: -6px; } .item-num{ color:#999; }效果参考:css/htmlcss_187.html 。

css怎么写箭头

文章插图