CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。
5 v& W8 H3 Z( z4 w; C* I 以下各特效用的HTML代码相同:
- P' X5 }! q* U$ j<div id="box">
编程适合那些有不同想法的人... <br/>
对于那些想要创造大事物并愿意改变世界的人们。
</div> 6 W, a6 @; n" h
1. CSS动画边框- l7 i: k. T U, F7 f
CSS代码:
0 @3 S, f# a4 e' P@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;
} 效果如下:
6 {: V3 V3 @ @( ^3 e1 X/ N, q2 w
1 W* x L/ w% |$ E5 g; \% _! U5 [. _4 u* i) ~/ t: x
2. CSS图像边框
) h& `, @' m' X& F0 t2 k6 ]CSS代码:
4 {# z4 ~3 ^9 Y8 @1 `/ |/ H#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;
} 效果如下:
& E" g, N$ d5 F6 _" s) U
6 a* U- _2 d# k. F
- M$ h0 K2 q- }5 ~3.CSS蛇式边框
0 D, `+ E0 v) Q5 H7 cCSS代码:
( i: y# p* ~' Z. V. |#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;
} 效果如下:
4 ~3 W3 F/ T( l4 H) J, B
0 g7 @% g/ @: Q; J C; A3 j4 H9 z/ H
# c1 G; s; P7 d3 W
4.CSS阶梯样式边框4 B3 P, d0 [- o X, A
CSS代码:
) W8 M) d8 g+ a; T#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
} 效果如下:
9 E: L8 Y& P9 R5 H3 ?1 Z
- p: S5 j% f7 {4 _, s
" V5 Q* I6 t3 A3 j9 g: K5.CSS只有阴影边框
9 N& e+ I1 `0 W" ~CSS代码:
% `, r/ a( u R% D6 N' F8 c#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 00010px white;
} 效果如下:
' [9 e: @; p2 F4 b, a1 \# Z: }
& _; l$ ]" X' s: N: k" c
2 { C3 ^7 e: }) [, y4 S0 K
6.CSS带阴影和轮廓的边框( R$ g7 V5 e$ ~. [3 `. P7 P: \. G
CSS代码:) l5 [9 ^- Q6 l" a' f9 l: L9 j1 S
#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;
} 效果如下:% c$ b. M& T# t, T; C+ a* q
: a' ?. W9 r d1 G2 u% \8 o% l6 R2 A |# E: g" s8 I
7.CSS少量阴影和轮廓的边框
) X4 Q% u3 X( [% X/ r+ ?& p! xCSS代码:, ]& O3 D2 r9 m6 F
#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;
} 效果如下:
. n+ o* @8 \* M4 T) a
' M. Z6 D- }$ g0 T! I* v& z7 W+ p# P) {( d6 J4 f
8.CSS带有阴影的双边框
' I: ~! |% l& M0 L+ i! D6 HCSS代码:
8 \$ c7 k* ~- A0 T2 P2 u7 D#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;
} 效果如下:
1 `; ?3 E3 y- h/ Y
- _4 @/ k6 l! [7 @: d/ L4 }* p o, K, P/ L+ s* h5 @
9.CSS多色边框
0 P8 J7 e7 k. |) ]( {# i# TCSS代码:. q( H7 u4 t, u" W: a$ A
#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;
} 效果如下:
; o/ Z, y/ b0 V& N9 v" E: m
|