CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。
, l" H: _0 h$ ]0 h+ \2 u4 m { 以下各特效用的HTML代码相同:
2 X3 M0 g. w( N( n) h6 i7 A: Z<div id="box">
编程适合那些有不同想法的人... <br/>
对于那些想要创造大事物并愿意改变世界的人们。
</div>
1 o& o5 S8 d& E5 ?6 S( Y% Z& F! q @1. CSS动画边框
2 U. v+ r$ s- _: u# p+ w) x9 z1 ICSS代码:
Y$ G) b/ l8 m# R; s@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& W E/ b; l
$ p: @- W+ v" K' c' B7 p5 y
2 z0 e* u$ W4 I; ]" M2. CSS图像边框
' o$ @% ^' s- T) D5 E5 r6 j f4 @CSS代码:
- q2 G6 d {' M! X: E7 K#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;
} 效果如下:* _" w3 Y5 o/ l9 S1 {' s+ s/ N
9 g: T( R/ x7 e+ o2 H! ?5 i
( [5 Y8 q' M" v+ e+ b1 E `3.CSS蛇式边框) J6 E7 {1 z5 ~, `% H8 d
CSS代码:( l5 A# I" i3 I* N1 x0 r( L; O
#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;
} 效果如下:
* ?/ N J# R" k F1 }1 f
% T& e: c2 e. J/ d, b! G2 T0 b# ~0 p2 ?- k9 [3 G& J" }# b% |
4.CSS阶梯样式边框* {, v F" K0 q: f
CSS代码:; h2 m$ F! l8 h' w( B& {
#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
} 效果如下:
; z3 H1 i9 ?# ?+ B& w5 ~
* _' F D" {4 S& `4 {' j( l
2 ?! c" H) P( [
5.CSS只有阴影边框
/ ]* u+ i' O/ d) ]! A, U: WCSS代码:! Z T/ q6 }2 P2 O- v& b1 J$ q- u
#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 00010px white;
} 效果如下:' \) g! F* K4 S& W5 b! U1 s" n
- B/ L/ Y( e& I4 Q
y, {9 ?: S, U. _) l* Y( {' M
6.CSS带阴影和轮廓的边框6 v8 f$ f' b$ O# j5 U6 C/ v! u
CSS代码:
0 ^2 U! z2 S* Y* q2 I#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;
} 效果如下:
* R" C1 b2 R, }0 r4 X3 _3 j
/ P b/ H( I, h0 ]+ g0 p+ Q: t; V1 e2 j
7.CSS少量阴影和轮廓的边框
! y/ q# E4 |. H5 ?CSS代码:
2 ?( ^! l, Q/ \% p6 j7 I#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;
} 效果如下:5 ?8 {% F, X! u8 E: F
. Y, X0 @ C' o. U; ~3 Z3 i& q
1 W# v/ s& X3 f/ G
8.CSS带有阴影的双边框$ n- F/ C! r" u; z1 g5 c/ P
CSS代码:
8 q9 O) b# W- Q, l F- v+ P#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 e$ h' a0 f* s& G) z( r
( {# }8 D) f7 [: K& t
) V7 R, j) r" @9.CSS多色边框% T0 V" i5 K4 |& b6 r0 O, K& d- }5 G
CSS代码:. m7 d4 t! E( c2 a8 s0 }6 v
#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;
} 效果如下:
+ J- w( u( p4 U: }
|