zoukankan      html  css  js  c++  java
  • css实现网格桌布效果,line-gradient

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <title></title>
            <style>
                body{
                    margin: 0;
                    background-color: #fff;
                    background-image: linear-gradient(
                        transparent,
                        transparent 50%,
                        rgba(234,159,167, 0.3) 50%/*用来定位*/
                        ),
                        linear-gradient(
                        to right,
                        transparent,
                        transparent 50%,
                        rgba(234,159,167, 0.3) 50%);
                    background-size: 40px 40px;
                }
            </style>
        </head>
        <body>
            
        </body>
    </html>
  • 相关阅读:
    嵌入式驱动视频2019.03.24
    wps如何输入连续的长破折号
    python绘图问题
    2.13
    2.12
    2.10
    2.9
    2.8
    2.7
    2.5
  • 原文地址:https://www.cnblogs.com/MySweetheart/p/13338546.html
Copyright © 2011-2022 走看看