CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。
1 V+ t1 Y" D6 s4 d1 Z, C/ _/ _. T2 E8 _ 以下各特效用的HTML代码相同:
3 b# C$ a; D( } ` q! \* ~<div id="box">
编程适合那些有不同想法的人... <br/>
对于那些想要创造大事物并愿意改变世界的人们。
</div>
( P5 n: Z: ]) a+ \; C1. CSS动画边框% H8 r/ J! G) r; n5 o& |3 I
CSS代码:' \7 [6 G* r( v! h
@keyframes animated-border {
0% {
box-shadow: 0000rgba(255,255,255,0.4);
}
100% {
box-shadow: 00020pxrgba(255,255,255,0);
}
}
#box {
animation: animated-border 1.5s infinite;
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
border: 2px solid;
border-radius: 10px;
padding: 15px;
} 效果如下:
; K* Y/ q6 u+ y' S: I7 x/ P2 ]
6 c! g$ x9 {( E' K* s/ }
K2 B9 f: w+ t9 G& {6 H2. CSS图像边框 F, R: E2 q r. S2 Z$ O
CSS代码: W# o P/ s; y5 R4 M
#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
border: 40px solid transparent;
border-image: url(https://image.flaticon.com/icons/svg/648/648787.svg);
border-image-slice: 100%;
border-image-width: 60px;
padding: 15px;
} 效果如下:# J2 t4 b! n9 }/ ?( G' k1 ~8 {" r
. I; A M$ U" Z! U4 T% p' R
+ e8 ]- _+ h$ U; C3.CSS蛇式边框& v4 c' I8 d; w" y
CSS代码:8 G9 t& Y s. ]* }& m9 N2 N
#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 15px;
border: 10px dashed #FF5722;
background:
linear-gradient(to top, green, 10px, transparent 10px),
linear-gradient(to right, green, 10px, transparent 10px),
linear-gradient(to bottom, green, 10px, transparent 10px),
linear-gradient(to left, green, 10px, transparent 10px);
background-origin: border-box;
} 效果如下:1 {/ J2 w. A- b# p, t3 @% p8 ]
7 q, `, {7 I8 O6 W) {/ D2 l7 A/ H! |* t
4.CSS阶梯样式边框
* A4 a+ ^, `: ~CSS代码:
# w& _, s" M/ M0 ~* A5 I#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 40px;
box-shadow:
inset #0096880005px,
inset #059c8e0001px,
inset #0cab9c00010px,
inset #1fbdae00011px,
inset #8ce9ff00016px,
inset #48e4d600017px,
inset #e5f9f700021px,
inset #bfecf700022px
} 效果如下:
; Z9 g% ~8 \: k2 U+ g. W# P
8 c3 X0 L/ l U! F
$ v9 E7 f$ W& c9 b# ]3 L# r# y% l5.CSS只有阴影边框# x- A" a* Y6 @: k4 I6 r$ h8 A
CSS代码:
7 |4 a. ?/ p! T/ G0 P; k! I4 ^#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 00010px white;
} 效果如下:
! K2 A+ T6 l1 H: M. X( \
' _ P g. Q/ K( V& u0 Z5 `* U
7 w e6 t6 M6 W; q
6.CSS带阴影和轮廓的边框
' `. g6 |8 a; P! m* dCSS代码:
) }/ j1 P. ? x5 C* s8 M#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 40px;
box-shadow: 00010px white;
outline: dashed 10px#009688;
} 效果如下:
; g8 \8 D5 K: y9 B" x
1 D# b: |: L9 a$ b7 H
8 T+ O& u. L/ r. Y7.CSS少量阴影和轮廓的边框
- z8 a/ n. E5 w$ mCSS代码:
( y- v! \5 i$ K& c! ^" U3 N#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 40px;
box-shadow:
0001px#009688,
0005px#F44336,
0009px#673AB7,
00010px#009688;
outline: dashed 10px#009688;
} 效果如下:4 [4 F+ @9 W. t! d9 g* H1 c
& | ~) x7 c& s: N
3 ?# n. K- a) f9 W" g/ O
8.CSS带有阴影的双边框( b4 p/ E6 j. Q! r+ u
CSS代码:- x0 Y/ G+ `2 P$ W" ^
#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 40px;
box-shadow: 00010px#009688;
border: 10px solid #009688;
outline: dashed 10px white;
} 效果如下:
9 O5 m* M+ k9 z$ a/ R% g
4 Q5 t4 K6 \' t/ |+ F5 l
4 N7 V; v* ?; ^9 C. C
9.CSS多色边框
* ^3 u3 e9 z8 z B" oCSS代码:& y3 J) S! a$ Q4 h: `7 k- O
#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 40px;
background:
linear-gradient(to top, #4caf50, #4caf50 10px, transparent 10px),
linear-gradient(to right, #c1ef8c, #c1ef8c 10px, transparent 10px),
linear-gradient(to bottom, #8bc34a, #8bc34a 10px, transparent 10px),
linear-gradient(to left, #009688, #00968810px, transparent 10px);
background-origin: border-box;
} 效果如下:+ |" [; g4 f3 d( h% _
|