CSS 样式是边框最重要的一个方面,这不是因为样式控制着边框的显示(当然,样式确实控制着边框的显示),而是因为如果没有样式,将根本没有边框。
8 p1 Q% E+ v* D3 |* a; u! s: p 以下各特效用的HTML代码相同:
. S1 q( U5 E+ _<div id="box">
编程适合那些有不同想法的人... <br/>
对于那些想要创造大事物并愿意改变世界的人们。
</div> 6 P8 \$ t- R2 f0 P2 [# P3 s) [ m# c
1. CSS动画边框
. V' p: w7 K. ^CSS代码:
* S: g$ H# ]" q) `@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;
} 效果如下:
+ Z) P4 b' u/ l* W/ h
% X* d. \( R& C: G% K
F2 v4 R& V2 z5 Y6 e' V
2. CSS图像边框
$ U2 w8 U: H) {' aCSS代码:
/ c; b9 W2 ^0 N- `* r#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;
} 效果如下:
* a0 w& ]3 ^$ x4 I: ? S& u
5 z2 w& x& o [& D: |( U
5 @; j' q7 } O% U' m3.CSS蛇式边框
+ L3 c$ `; D: h$ |! }! oCSS代码:
6 H1 y0 _. p6 F: a: @2 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;
} 效果如下:
* C3 d$ a) T0 j. w8 f5 b/ B
p1 N7 {6 R/ G' W, P3 b5 j
2 R u, E* h, S( O8 z
4.CSS阶梯样式边框; E9 F( C4 b4 I
CSS代码:% L3 j# D) v- e4 q$ H' {" r/ D
#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
} 效果如下:
' h' G& w1 [8 A& T. q) F
; g( c' K4 c- w5 L/ q( u, o
8 U. H3 |5 y$ ]5 c0 U5 P5.CSS只有阴影边框' Y4 Y, H) |& I# ?1 B( [# a3 F
CSS代码:, F) ?/ E/ E" X& @
#box {
font-family: Arial;
font-size: 18px;
line-height: 30px;
font-weight: bold;
color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 00010px white;
} 效果如下:- Y5 m4 D% ?$ M/ o% W9 i2 O) @
5 A" w) v2 E# {. \( O
' e, {1 F' N7 G9 }& e) s# n$ ^6.CSS带阴影和轮廓的边框
: J7 ]% E8 z$ }1 C1 JCSS代码:' M" g% _' F+ a' [
#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;
} 效果如下:
% }% i6 C* O$ ^0 h; g' s
1 b& u$ G; D8 s8 p# n
8 S! L/ A7 \" | i% Q0 I3 G7.CSS少量阴影和轮廓的边框
$ H1 V3 l2 B! N( z- @" U/ S! WCSS代码:
0 E7 w5 P1 Q1 T0 z0 X8 J ]#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;
} 效果如下:
' d' x6 W, @% T: {9 _: \4 r; `
P; u' i" M7 t# }( H7 O3 O. P q7 S0 a) l# K( S
8.CSS带有阴影的双边框/ _6 Z8 y: |% _) T8 W* G
CSS代码:( l5 Q) o: t; O7 Q4 H
#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;
} 效果如下:& \% G. u% j# E9 n; F# z
. c$ e+ _" o$ l, Y# i
' u- O* o( M& ~
9.CSS多色边框0 R2 z! G% K, ^
CSS代码:
- h* b% i7 R' f) R3 d#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;
} 效果如下:
; `3 J* H$ h; v5 v/ z9 y
|