zoukankan      html  css  js  c++  java
  • 【css】纯 css 制作圆角

    今天在整理文件的时候发现了一个以前收藏的纯CSS写的圆角DEMO,给大家分享下。

    <!DOCTYPE HTML>
    <html lang="en-US">
    <head>
        <meta charset="UTF-8">
        <title>纯css圆角</title>
        <style type="text/css">
        #xsnazzy h1,#xsnazzy h2,#xsnazzy p{margin:0 10px;letter-spacing:1px;}
        #xsnazzy h1{font-size:2.5em;color:#fff;}
        #xsnazzy h2{font-size:2em;color:#06a;border:0;}
        #xsnazzy p{padding-bottom:0.5em;}
        #xsnazzy h2{padding-top:0.5em;}
        #xsnazzy{background:transparent;margin:1em;}
    
        .xtop,.xbottom{background:transparent;font-size:1px;}
        .xb1,.xb2,.xb3,.xb4{overflow:hidden;}
        .xb1,.xb2,.xb3{height:1px;}
        .xb2,.xb3,.xb4{background:#ccc;border-left:1px solid #08c;border-right:1px solid #08c;}
        .xb1{margin:0 5px;background:#08c;}
        .xb2{margin:0 3px;border-width:0 2px;}
        .xb3{margin:0 2px;}
        .xb4{height:2px;margin:0 1px;}
    
        .xboxcontent{background:#ccc;border:0 solid #08c;border-width:0 1px;}
        </style>
    </head>
    <body>
        <div id="xsnazzy">
            <div class="xtop">
                <div class="xb1"></div>
                <div class="xb2"></div>
                <div class="xb3"></div>
                <div class="xb4"></div>
            </div>
            <div class="xboxcontent">
                <h1>Snazzy Borders</h1>
                <p>Based on Nifty Corners By Alessandro Fulciniti<br />http://pro.html.it/esempio/nifty/</p>
                <h2>Rounded borders without images</h2>
                <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibheuismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enimad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nislut aliquip ex ea commodo consequat.</p>
                <p>Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.</p>
            </div>
            <div class="xbottom">
                <div class="xb4"></div>
                <div class="xb3"></div>
                <div class="xb2"></div>
                <div class="xb1"></div>
            </div>
        </div>
    </body>
    </html>

    PS:对于圆角还是用 border-radius 吧。

  • 相关阅读:
    c#生成图片验证码
    关于Aspcms如何嵌入整个网站,以及网站导航所指向页面的内容显示
    web 验证控件
    MVC Link连接数据库增删改查方法的不同写法
    Mvc 翻页查询,代码很有用
    MVC添加分布视图做唯一验证
    MVc路由查询,路由到底有什么作用呢??
    MVC添加动态视图的参考代码。重点是添加部分视图的使用方法,非常有用的代码!!!!!!!!!!!!!!
    tyvj P1209
    bzoj 1051: [HAOI2006]受欢迎的牛 tarjan缩点
  • 原文地址:https://www.cnblogs.com/yjzhu/p/2794546.html
Copyright © 2011-2022 走看看