CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。" R9 ]- O& d. m( |+ R2 b
以下各特效用的HTML代码相同:
6 Z, H/ `4 c$ a1 g: y<div id="box">
编程适合那些有不同想法的人... <br/>
对于那些想要创造大事物并愿意改变世界的人们。
</div> 1 r2 D% K) l7 \) j1 G7 z, }
1. CSS动画边框4 l. m; x% ~! {8 t
CSS代码: X$ a( p5 n) g# F$ H1 M
@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;
} 效果如下:0 X$ W2 [) @$ v! H/ v$ Z! w
! r3 T) Y N/ r- E A
4 @8 X) _" r7 G0 K; \1 G- Q
2. CSS图像边框1 q3 @. [% X5 k) S T
CSS代码:
1 T2 e; f8 \1 Q#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;
} 效果如下:; ~9 @7 ?& z+ L" g
4 G# U5 O/ u" n2 ?/ z5 [/ ?
4 B: T: u* e' Y& b- Z3.CSS蛇式边框8 {$ b. o/ }% H& s( Z2 d# o
CSS代码:& }9 b' D8 ~% p- m
#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;
} 效果如下:
. k5 v( d& `' f/ g: P) G/ O: H+ z6 Q
" j5 ]% U% H' r
. Q) e; f/ }) ~" q8 B- g4.CSS阶梯样式边框
: X3 s) {# a& ^/ @& tCSS代码:
/ q# D* w1 b. h#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 W9 @4 A e0 C% H3 q4 e
3 M. M9 B! X* u6 c* w( J- K3 l: J, I5 W
5.CSS只有阴影边框
- @$ I- }& C, q4 a pCSS代码:9 e& w0 V6 p1 f) e( @2 g/ Z
#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 00010px white;
} 效果如下:
" ?2 E& S9 _; _7 Z! \9 U' b
( W3 v* l# o" L8 [* L
( p- x- o* }/ g0 T) O# A6.CSS带阴影和轮廓的边框
3 e! s" y; ?1 u% iCSS代码:: @/ _ m! ^. b) u- B+ t# a# }' f3 l
#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;
} 效果如下:3 R" p! @" Q: i0 }
, _3 q- E5 M- P1 m- _! G$ U7 J- L! ]( x
7.CSS少量阴影和轮廓的边框
7 O6 s; A1 t' t2 NCSS代码:: N, N# q. y' y1 q
#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: S. O5 r6 a1 v0 h
/ a- M. [$ y3 |1 Y l) x' ~; q3 |* b6 V8 S8 P- I: E8 u
8.CSS带有阴影的双边框/ t0 G0 N' h1 t( A. s/ T
CSS代码:+ M+ ^+ ~ W- P" q
#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;
} 效果如下:
, t2 \4 j, |$ W( g
8 ~ h2 q! c8 d# R7 `' g7 A
/ b$ [4 b$ V G: e9.CSS多色边框
/ A }+ Z5 U' S2 ~7 Z: GCSS代码:
* n. t U& Q* m8 L+ D* U#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;
} 效果如下:; J8 [3 e4 [8 B7 v0 W1 Y9 U3 P
|