zoukankan      html  css  js  c++  java
  • border-radius的8个属性值_画半圆、叶子等

    参考资料

    学习资料



    border-radius的8个属性值

    border-radius详细例子展示:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
        <style>
            div{
             100px;
            height: 100px;
            margin: 100px 100px;
            border: 2px solid red;
            /*        x轴 上1  右2  下3  左4/y轴上5 右6  下7   左8*/
            border-radius:5px 10px 15px 20px/15px 20px 30px 50px;}
        </style>
    </head>
    <body>
        <div></div>
    </body>
    </html>
    

    效果图展示

    圆角和盒子阴影应用

    <!DOCTYPE html>
    <html lang="en">
    <head>
    	<meta charset="UTF-8">
    	<title>圆角和盒子阴影应用</title>
    	<style>
    
    			.one {
    			     200px;
    			    height: 100px;
    			    background-color: greenyellow;
    			    border-radius: 200px 0 200px 0 / 100px 0 100px 0;
    			}
    
    			.two {
    			     200px;
    			    height: 100px;
    			    background-color: greenyellow;
    			    border-radius: 200px 0 200px 0 / 100px 0 100px 0;
    			    box-shadow: 10px 10px;
    			}
    			.three {
    			     200px;
    			    height: 100px;
    			    background-color: greenyellow;
    			    border-radius: 200px 0 200px 0 / 100px 0 100px 0;
    			    box-shadow: 20px 20px 5px 5px green,40px 40px 5px 5px;
    			    margin-bottom: 100px;
    			}
    
    	</style>
    </head>
    <body>
    	<div class="one"></div>
    	<div class="two"></div>
    	<div class="three"></div>
    
    </body>
    </html>
    

  • 相关阅读:
    IOS照相
    起学习iOS开发专用词汇
    django[post与get测试]
    起名字好难啊!(初识Django)
    MTV模型
    Django安装以及介绍
    数据库操作
    数据库其它操作
    数据库经典习题,
    数据库基本操作
  • 原文地址:https://www.cnblogs.com/gleamer/p/10259723.html
Copyright © 2011-2022 走看看