<!doctype html> <html> <head> <meta charset="utf-8"/> <title>渐变</title> <style> img{ display:block; margin:200px auto; /*倒影:只能有一个方向:left/right/below/above*/ -webkit-box-reflect:above 50px -webkit-linear-gradient( rgba(255,255,255,0), rgba(255,255,255,.5), rgba(255,255,255,1) ); } h1{ -webkit-box-reflect:below 40px -webkit-linear-gradient( rgba(255,255,255,0), rgba(255,255,255,.5), rgba(255,255,255,1) ); } h2{ /*文字阴影部分*/ text-shadow:12px 2px 12px blue; } div{ width:200px; height:200px; background:pink; border-bottom:5px solid -moz-border-bottom-colors:red blue red; box-shadow:10px 5px 10px blue; /*border:-webkit-linear-gradient(lightgray 20%,black 80%, lightgray 20%);*/ } -webkit-border-top-colors: -webkit-border-right-colors: -webkit-border-bottom-colors: -webkit-border-left-colors: } </style> </head> <body> <h1>我是H1fdsdsgfhgkjhowswwwqww</h1> <h2>nnnjngkgkgkhkhkhk</h2> <div></div> <div class="border"></div> </body> </html>
|