CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。
- A8 B% Q; _& E& I* s2 u 以下各特效用的HTML代码相同:6 M+ S ]4 t+ A/ B* v; K
<div id="box">
编程适合那些有不同想法的人... <br/>
对于那些想要创造大事物并愿意改变世界的人们。
</div>
/ i7 p7 ?: ]1 m1. CSS动画边框8 c- t$ D& c/ {; A5 z5 R) I: x
CSS代码:( S) `8 @2 z0 I; {- |
@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;
} 效果如下:
1 ]6 M; `, V1 Q$ _- n* w2 I( A& S# d
3 Z% a# Z. I( G8 Z" b3 g0 `# h1 J- {6 D* U. A# A
2. CSS图像边框
% I3 g! a* ]- p6 ?9 Z( l9 W0 MCSS代码:: y% P J( @5 z
#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;
} 效果如下:
- @! n* x6 Q6 q/ n, g# W
) w5 ]4 \& I/ P& d) b4 a4 c2 K* o) ]5 T
3.CSS蛇式边框
$ J8 a* d% l9 M$ n3 G9 S; O- gCSS代码:
8 D( w. M6 F, B 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;
} 效果如下:8 N, k, E @$ n5 ]% Q5 _
& |' M4 z3 T! n7 i
! e2 h" o) d) F# s
4.CSS阶梯样式边框
. m% F0 p# ]4 Q5 Y: `* nCSS代码:
i- O" |: w* X1 ]3 h8 Z2 g( 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
} 效果如下:
; b; H! C# u+ v4 G+ X
+ S; Z- U$ Z* h* N$ _! A4 z" W$ t0 S9 N; N8 t* z I# B# M
5.CSS只有阴影边框( B0 S; z1 ~" u9 S9 U9 s
CSS代码:
+ n9 M" @' \* a6 W8 A2 Y; S7 o* _#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 00010px white;
} 效果如下:, m/ l0 R+ g% Y9 m, v2 Q; l
& P- s8 U, T/ t% B5 O5 B; c
* F/ K |; ~ U/ @ D8 Q; p
6.CSS带阴影和轮廓的边框
+ j3 U( O& [2 y4 K' `- h3 @( tCSS代码:5 E9 N* w4 C/ c) T- b
#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;
} 效果如下:
1 C3 b$ M. K, c/ o8 w+ C/ O8 _
' P2 K ~# s; z6 O/ l
& ?4 m3 e$ J) P0 P) s4 f0 ~
7.CSS少量阴影和轮廓的边框
$ U* `2 H+ F& i9 Y/ WCSS代码:1 t" i C$ r N) o; P
#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;
} 效果如下:; q# q. e/ Y, o
! ~! F$ f# f) u7 u( s6 O
9 Y5 l' h6 ?/ Y% f# U( X. p8.CSS带有阴影的双边框" ^$ \! C8 X3 t( q: a' m
CSS代码:
* `$ X! u, b" _' Y* J#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;
} 效果如下:
5 {7 ?2 M# u5 _( o
& ]) }" `' ~" c- ]5 Y
0 g: I! U2 f t5 w0 z9.CSS多色边框1 T! d* G |( y
CSS代码:" U* z, [+ r" v' j( D/ P
#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;
} 效果如下:
. ?/ W* M M# k3 W
|