博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS实现箭头效果
阅读量:5364 次
发布时间:2019-06-15

本文共 1949 字,大约阅读时间需要 6 分钟。

有时候网页中使用箭头以增强效果,一般的做法是使用图片,今天我们使用CSSCSS来实现“箭头效果”,使用CSS我们必须兼容所有浏览器(IE6、7、8、9、10、+),Chrome,Firefox,Opear...

 

1  2  3  4 
5
6
7
8
9 Document10 23 26 27 28
29
30
35
38
39
40
45
49
50
51
56
60
61
62
67
71
72
73
78
82
83
31
32
33
34
36

.arrow{ border-width:50px; border-color:red green blue black; border-style:solid solid solid solid}

37
41
42
43
44
46

.arrow-top{ border-width:50px; border-color:red transparent transparent transparent; border-style:solid dashed dashed dashed; border-bottom:none;}47

48
52
53
54
55
57

.arrow-right{ border-width:50px; border-color:transparent green transparent transparent; border-style:dashed solid dashed dashed; border-left:none;}58

59
63
64
65
66
68

.arrow-bottom{ border-width:50px; border-color:transparent transparent blue transparent; border-style:dashed dashed solid dashed; border-top:none;}69

70
74
75
76
77
79

.arrow-left{ border-width:50px; border-color:transparent transparent transparent black; border-style:dashed dashed dashed solid; border-right:none;}80

81
84 85 86

转载于:https://www.cnblogs.com/kingwell/p/3334923.html

你可能感兴趣的文章
解决响应式布局下兼容性的问题
查看>>
使用DBCP连接池对连接进行管理
查看>>
【洛谷】【堆+模拟】P2278 操作系统
查看>>
hdu3307 欧拉函数
查看>>
Spring Bean InitializingBean和DisposableBean实例
查看>>
[容斥][dp][快速幂] Jzoj P5862 孤独
查看>>
Java基础之字符串匹配大全
查看>>
面向对象
查看>>
lintcode83- Single Number II- midium
查看>>
[工具] Sublime Text 使用指南
查看>>
Web服务器的原理
查看>>
#10015 灯泡(无向图连通性+二分)
查看>>
HAL层三类函数及其作用
查看>>
web@h,c小总结
查看>>
Data Structure 基本概念
查看>>
NEYC 2017 游记
查看>>
[搬运] 写给 C# 开发人员的函数式编程
查看>>
Python之旅Day14 JQuery部分
查看>>
core--线程池
查看>>
他山之石:加载图片的一个小问题
查看>>