CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。+ {, b* W& O8 j) |! m) a
以下各特效用的HTML代码相同:
+ N& z' N$ I! G$ ]<div id="box">
编程适合那些有不同想法的人... <br/>
对于那些想要创造大事物并愿意改变世界的人们。
</div> 3 R7 A! F+ L8 \+ [' q2 c
1. CSS动画边框
* P8 h0 b0 X! p7 RCSS代码:0 b! y+ g# c [4 j
@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;
} 效果如下:, B2 a, y2 C( W6 e. a' D3 [; H
3 ]! @9 g1 g4 F- C' i g
- h) O* z2 [( Z! Z4 P4 E2. CSS图像边框' g @" Y. O6 Y% p/ {$ \; x/ m0 C
CSS代码:
+ v2 c& [5 O; J% q' s8 ?#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;
} 效果如下:: ~% m9 p: ]2 |, v j
$ a" b6 A6 z& @
2 q0 R2 S1 y7 c. }3.CSS蛇式边框
# P; n3 B n7 r9 P3 n4 dCSS代码:1 F+ @4 h: |% ^( D
#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 m4 s( y- I3 i5 R) Q) T' N
# ^7 Y i! s, |. H8 C; @5 U
9 P1 V' ?/ k: ]$ {6 U4.CSS阶梯样式边框
, U4 d- h) R( h4 |CSS代码:
7 H+ _) ?' Y" O2 H5 i+ 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
} 效果如下:
! M& B4 i# I1 K& N$ v* q. L/ Q5 g
" A. G2 q" Z" x: |3 i
( g1 s+ A8 i6 U( U# b5.CSS只有阴影边框
' B7 v1 |' R8 c+ I" gCSS代码:3 M/ `$ p' V [) _% B0 ~
#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 y9 D# h" L7 O% C7 ~
2 T1 K0 G$ E; b9 S
$ `( |* Y5 B Y- m9 g/ P6.CSS带阴影和轮廓的边框" w6 m1 W7 n7 K# n4 M0 V/ F
CSS代码:$ v; [' a4 s1 l8 G1 l. x
#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;
} 效果如下:" {, t/ z; M" |- x/ H
# s7 e* [2 j* h( n) S( }& P3 t8 }9 a$ E- s# C$ b+ J' _% |: N
7.CSS少量阴影和轮廓的边框
. L3 N: o0 j7 @ c) X+ FCSS代码:
0 ]6 Z0 O# k, h/ P9 Q+ S4 g#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;
} 效果如下:
3 |' T3 A" z$ \
( w6 Q9 J4 ^8 r
/ y/ y, F) ?4 P" r' ?; t
8.CSS带有阴影的双边框
( i7 y$ I; j9 s, j% TCSS代码:- Q8 a+ z- O8 |' {3 @/ N
#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;
} 效果如下:
6 D% ^9 z0 n: B" U" N* g' z8 {
0 d$ j! B" O3 E0 U2 F- `& z- ~) y' h. ?& \* K/ ~
9.CSS多色边框7 T/ u2 j4 Q1 O0 S4 ?4 ~, i
CSS代码:
a1 W$ z$ Y0 ^ Y#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;
} 效果如下:& h& Q; e5 {+ R. F2 a, i- n# \
|