XML/HTML Code復制內(nèi)容到剪貼板
- div{
-
- height:50px;/*是width的一半*/
-
- width:100px;
-
- background:#9da;
-
- border-radius:50px 50px 0 0;/*半徑至少設置為height的值*/
-
- }
XML/HTML Code復制內(nèi)容到剪貼板
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>border-radius</www.dztcsd.com/title>
- <style type="text/css">
- div.circle{
- height:100px;/*與width設置一致*/
- width:100px;
- background:#9da;
- border-radius:50px;/*四個圓角值都設置為寬度或高度值的一半*/
- }
- /*任務部分*/
- div.semi-circle{
- height:100px;
- width:50px;
- background:#9da;
- border-radius:?;
- }
-
- </style>
- </head>
- <body>
- <div class="circle">
- </div>
- <br/>
-
- <div class="semi-circle">
- </div>
-
- </body>
- </html>