• css


     1 <!DOCTYPE html>
     2 <html lang="en">
     3 
     4 <head>
     5     <meta charset="UTF-8">
     6     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     7     <meta http-equiv="X-UA-Compatible" content="ie=edge">
     8     <title>Document</title>
     9     <style>
    10         h1 {
    11             /* 
    12             box-shadow:0px 0px 1px #000
    13 
    14             box-shadow: 0(左右边框阴影 为1px,第1个值为正整数左边框阴影,第1个值为负整数 代表 右边框阴影) 0(第2个值为0 代表上下边框阴影, 第2个值为正整数 代表1px阴影距离上边框多少,第1个值为负整数 代表下边框阴影设置) 
    15             10px(指阴影程度) inset(内阴影,不填写则外阴影)
    16              */
    17             box-shadow: 0 0 10px #000 inset;
    18             width: 80px;
    19             height: 80px;
    20         }
    21     </style>
    22 </head>
    23 
    24 <body>
    25     <h1></h1>
    26 </body>
    27 
    28 </html>
    1         /*
    2             blur:模糊半径
    3             spread:颜色
    4         */
    5         box-shadow: 0 0 10px #f00 inset;
    6         box-shadow: h-shadow v-shadow blur spread color inset;
  • 相关阅读:
    Javascript高性能编程-提高Dom访问速度
    获取在线人数
    js倒计时
    支付宝支付
    微信扫码支付
    多条sql语句实现事物处理
    防止页面重复刷新
    bootstrapTable.js 使用
    org_chart.js 使用方法
    js上传图片及时显示
  • 原文地址:https://www.cnblogs.com/cisum/p/9596875.html
Copyright © 2020-2023  润新知