zoukankan      html  css  js  c++  java
  • 呼吸灯框架

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <style>
            *{
                box-sizingborder-box;
            }
        div.article{
            width:200px;
            height:300px;
            background-colorblack;
            margin:0 auto;
        }
        div.top{
            width:200px;
            height:200px;
            padding:40px;
        }
        div#outer{
            height:100%;
            border :5px solid #ccc;
            border-radius50%;
            padding:20px;
        }
        div.text{
            color:#ffff;
            text-aligncenter;
        }
        div#inner{
            height:100%;

            border:10px solid  #ffff;
            border-radius50%;
        }
        </style>
    </head>
    <body>
        <div class="article">
            <div class="top">
                    <div id="outer">
                        <div id="inner"></div>
                    </div>
            </div>
            <div class="text"> hi!</div>
        </div>
    </body>
    </html>
  • 相关阅读:
    Python 规范
    Hql
    Python
    IIS 日志分析
    NHibernate 知识点整理
    微软开放了.NET 4.5.1的源代码
    自定义消息编码绑定实现
    使用自定义绑定
    WCF安全:通过 扩展实现用户名密码认证
    WCF 几种错误
  • 原文地址:https://www.cnblogs.com/yangnansuper/p/13407288.html
Copyright © 2011-2022 走看看