zoukankan      html  css  js  c++  java
  • css圆角特效

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title>css圆角特效</title>
        <style>
            div{
                text-align: center;
                font-size: 32px;
                100px;
                color: white;
                padding: 10px;
                margin: 10px;
                -webkit-border-radius: 15px;
                -moz-border-radius: 15px;
     
            }
            .box1{
                background-color: black;
            }
            .box2{
                background: -webkit-gradient(linear,left top,left bottom,from(#000),to(#999));
                background: -moz-linear-gradient(top,red,blue);
            }
            .box3{
                background-color: blue;
                -webkit-box-shadow:3px 3px 5px #000;
                -moz-box-shadow: 3px 3px 5px #000;
            }
        </style>
    </head>
     
    <body>
        <div class="box1">圆角1</div>
        <div class="box2">圆角2</div>
        <div class="box3">圆角3</div>
    </body>
    </html>
     
     
     
     
     
     
     
    .rounded_sch_btn  {
    90px;
    height: 30px;
    /* border: 1px solid #999999; */
    background-color: #f6bb46;
    color:#fff;
    text-align:center;
    line-height:30px;
    cursor:pointer;
    border-radius: 4px;
    -moz-border-radius: 180px;
    -webkit-border-radius: 180px;
    }
     
     
     
  • 相关阅读:
    第13章 TCP/IP和网络编程
    实验二测试
    实验四 Web服务器1socket编程
    thread同步测试
    团队作业(五):冲刺总结——第四天
    111
    递归和数学归纳法
    Nodejs中cluster模块的多进程共享数据问题
    JavaScript写类方式(一)——工厂方式
    JavaScript中的shift()和pop()函数
  • 原文地址:https://www.cnblogs.com/chencheng365/p/4318840.html
Copyright © 2011-2022 走看看