zoukankan      html  css  js  c++  java
  • sass的视频教程

    http://www.w3ci.com/video/715.html

    http://koala-app.com/index-zh.html

    /***************三角形的应用***************/
    .triggle(top,@w:5px,@c:#ccc){
    border-@w;
    border-color:@c transparent transparent transparent;
    border-style: solid dashed dashed dashed;
    }
    .triggle(right,@w:5px,@c:#ccc){
    border-@w;
    border-color:transparent @c transparent transparent;
    border-style: dashed solid dashed dashed;
    }
    .triggle(bottom,@w:5px,@c:#ccc){
    border-@w;
    border-color:transparent transparent @c transparent;
    border-style: dashed dashed solid dashed;
    }
    .triggle(left,@w:5px,@c:#ccc){
    border-@w;
    border-color:transparent transparent transparent @c;
    border-style: dashed dashed dashed solid;
    }

    .triggle(@_,@w:5px,@c:#ccc)
    {
    0;
    height:0;
    overflow: hidden;
    }
    .sanjiao{
    .triggle(left,12px);
    }


    /*******************position的应用***************/

    .pos(a){
    position:relative;
    }
    .pos(b){
    position: absolute;
    }
    .pos(c){
    position: fixed;
    }
  • 相关阅读:
    植物:柏树
    植物:水杉
    植物:珙桐
    植物:桫椤
    汉语-成语:悠闲自在
    植物:孑遗植物
    汉语-词语:孑遗
    汉语-词语:调味品
    调味品:酱油
    netstat 命令详解
  • 原文地址:https://www.cnblogs.com/chenrong/p/5445342.html
Copyright © 2011-2022 走看看