zoukankan      html  css  js  c++  java
  • 特殊的css样式

    在一定范围大小变化的div

    .div
    {
    	auto;
    	height:auto;
    	min-height:100px;
    	min-100px;
    	max-height:200px;
    	max-200px;
    }
    

    圆的css样式

    .a
    {400px;
    height:400px;
    background-color:#06F;
    top:800px;
    left:800px;
    -moz-border-radius:200px;
    -webkit-border-radius:200px;
    border-radius:200px;
    }
    

    三角形

    <style>
    .t{
      50px;
      border-style:solid;
      border-color:#a6a2f7 #fff;
      border-0 50px 50px 50px;
    }
    </style>
    

     div实现滚动条 (某些情况下可以替代iframe)

    <style>
    .gb { overflow:auto; white-space:normal; height:100px; padding:3px;}
    </style>
    <div class="gb"></div>
    

    其中高度height和overflow是必须设置的!

    ps:在IE下有的时候水平滚动条会出来,但是事实上,水平滚动条不没有实际的用途,貌似这个是IE的bug,解决方法:overflow-x: hidden

     加上这个.把水平滚动条隐藏掉

    椭圆

    .b
    {400px;
    height:200px;
    background:#FF0;
    -moz-border-radius:200px/100px;
    -webkit-border-radius:200px/100px;
    border-radius:200px/100px;
    }
    

     上三角形

    #triangle-up {
     0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid red;
    }
    

     平行四边形

    #parallelogram {
     150px;
    height: 100px;
    margin-left:20px;
    -webkit-transform: skew(20deg);
    -moz-transform: skew(20deg);
    -o-transform: skew(20deg);
    background: red;
    }
    

     梯形

    #trapezoid {
    border-bottom: 100px solid red;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    height: 0;
     100px;
    }
    

     六角形

    #star-six {
     0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid red;
    position: relative;
    }
    #star-six:after {
     0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 100px solid red;
    position: absolute;
    content: "";
    top: 30px;
    left: -50px;
    }
    

     五角星

    #star-five {
    margin: 50px 0;
    position: relative;
    display: block;
    color: red;
     0px;
    height: 0px;
    border-right: 100px solid transparent;
    border-bottom: 70px solid red;
    border-left: 100px solid transparent;
    -moz-transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    }
    #star-five:before {
    border-bottom: 80px solid red;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    position: absolute;
    height: 0;
     0;
    top: -45px;
    left: -65px;
    display: block;
    content: '';
    -webkit-transform: rotate(-35deg);
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    
    }
    #star-five:after {
    position: absolute;
    display: block;
    color: red;
    top: 3px;
    left: -105px;
     0px;
    height: 0px;
    border-right: 100px solid transparent;
    border-bottom: 70px solid red;
    

     五角大楼

    #pentagon {
    position: relative;
     54px;
    border- 50px 18px 0;
    border-style: solid;
    border-color: red transparent;
    }
    #pentagon:before {
    content: "";
    position: absolute;
    height: 0;
     0;
    top: -85px;
    left: -18px;
    border- 0 45px 35px;
    border-style: solid;
    border-color: transparent transparent red;
    }
    

     六边形

    #hexagon {
     100px;
    height: 55px;
    background: red;
    position: relative;
    }
    #hexagon:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
     0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 25px solid red;
    }
    #hexagon:after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
     0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 25px solid red;
    }
    

     心形

    #heart {
    position: relative;
     100px;
    height: 90px;
    }
    #heart:before,
    #heart:after {
    position: absolute;
    content: "";
    left: 50px;
    top: 0;
     50px;
    height: 80px;
    background: red;
    -moz-border-radius: 50px 50px 0 0;
    border-radius: 50px 50px 0 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    -o-transform-origin: 0 100%;
    transform-origin: 0 100%;
    }
    #heart:after {
    left: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    transform-origin :100% 100%;
    }
    

     鸡蛋

    #egg {
    display:block;
     126px;
    height: 180px;
    background-color: red;
    -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    }
    

     提示对话框

    #talkbubble {
     120px;
    height: 80px;
    background: red;
    position: relative;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    }
    #talkbubble:before {
    content:"";
    position: absolute;
    right: 100%;
    top: 26px;
     0;
    height: 0;
    border-top: 13px solid transparent;
    border-right: 26px solid red;
    border-bottom: 13px solid transparent;
    }
    

     太极

    #yin-yang {
     96px;
    height: 48px;
    background: #eee;
    border-color: red;
    border-style: solid;
    border- 2px 2px 50px 2px;
    border-radius: 100%;
    position: relative;
    }
    
    #yin-yang:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background: #eee;
    border: 18px solid red;
    border-radius: 100%;
     12px;
    height: 12px;
    }
    
    #yin-yang:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: red;
    border: 18px solid #eee;
    border-radius:100%;
     12px;
    height: 12px;
    }
    

     钻石

    #cut-diamond {
    border-style: solid;
    border-color: transparent transparent red transparent;
    border- 0 25px 25px 25px;
    height: 0;
     50px;
    position: relative;
    margin: 20px 0 50px 0;
    }
    #cut-diamond:after {
    content: "";
    position: absolute;
    top: 25px;
    left: -25px;
     0;
    height: 0;
    border-style: solid;
    border-color: red transparent transparent transparent;
    border- 70px 50px 0 50px;
    }
    
  • 相关阅读:
    使用Java发送qq邮件
    docker部署nacos1.4
    职责链模式
    策略模式
    状态模式
    解释器模式
    备忘录模式
    js中数组常用方法总结
    微信小程序生成二维码工具
    小程序登录过程
  • 原文地址:https://www.cnblogs.com/zoubizhici/p/5487549.html
Copyright © 2011-2022 走看看