search
HomeWeb Front-endHTML Tutorial基础(二) - 柠檬先生

嵌套-伪类嵌套
   伪类嵌套和属性嵌套非常类似,只不过他需要借助“&”符号一起配合使用
    例如:sass
      .clearfix{
          &:before,
          &:after {
              content:"";
          display: table;
          }
          &:after {
              clear:both;
              overflow: hidden;
            }
      }
    编译出来的 CSS:
        clearfix:before, .clearfix:after {
            content: "";
            display: table;
        }
        .clearfix:after {
            clear: both;
            overflow: hidden;
      }
混合宏-声明混合宏
    如果你的整个网站中有几处小样式类似,比如颜色,字体等,在 Sass 可以使用变量来统一处理,那么这种选择还是不错的。
    但当你的样式变得越来越复杂,需要重复使用大段的样式时,使用变量就无法达到我们目了。
    不带参数混合宏:
    在 Sass 中,使用“@mixin”来声明一个混合宏。
      @mixin border-radius{
          -webkit-border-radius: 5px;
          border-radius: 5px;
    }
    复杂的混合宏:
      Sass中的混合宏还提供更为复杂的,你可以在括号里写上带有逻辑关系,帮助更好的做你想做的事情。
        @mixin box-shadow($shadow...){
          @if length($shadow) >= 1{
            @include prefixer(box-shadow,$shadow);
        }@else{
          $shadow:0 0 4px rgba(0,0,.3);
          @include prefixer(box-shadow,$shadow);
          }
        }
        这个 box-shadow 的混合宏,带有多个参数,这个时候可以使用“ … ”来替代。简单的解释一下,当 $shadow 的参数数量值大于或
        等于“ 1 ”时,表示有多个阴影值,反之调用默认的参数值“ 0 0 4px rgba(0,0,0,.3) ”。
    混合宏-调用混合宏
      在Sass 中通过@mixin 关键词声明了一个混合宏,那么在实际调用中,在匹配了一个关键词“@include”来调用声明好
      的混合宏。
      @mixin border-radius{
          -webkit-border-radius:3px;
          border-radius:3px;
      }
      在一个按钮中腰调用定义好的混合宏“border-radius”可以这样使用
      button{
          @include border-radius;
      }
     编译出来的css
        button{
          -webkit-border-radius:3px;
          border-radius:3px;
      }
    混合宏的参数-传一个不带值的参数
    Sass 的混合宏有一个强大的功能,可以传参,那么在Sass中传参主要有以下几种形式
      (A)传一个不带值的参数
          在混合和宏中,可以穿个不在任何值的参数 比如:
        @mixin border-radius($radius){
          -webkit-border-radius:$radius:
          border-radius:$radius:
        }
    在混合宏“border-radius”中定义了一个不带任何值的参数$radius
    在调用的时候可以给这个混合宏专递一个数值
      .box{
        @include border-radius(3px);
      }
    在这里表示混合宏传递了一个“border-radius”的值为“3px”。
      .box{
          -webkit-border-radius:3px;
            border-radius:3px;
      }
混合宏的参数-传个带值的参数
    在Sass的混合宏中,还可以给混合宏的参数传递一个默认值,例如:
        @mixin border-radius($radius:3px){
            -webkit-border-radius:$radius;
              border-radius:$radius;
        }
    混合宏“border-radius”传了一个参数“$radius”,而且给这个参数赋予了一个默认值“3px”。

    在调用类似这样的混合宏时,会多有一个机会,假设你的页面中的圆角很多地方都是“3px”的圆角,那么这个时候只
    需要调用默认的混合宏“border-radius”:
      .btn {
        @include border-radius;
      }
    编译出来的CSS
      .btn{
        -webkit-border-radius:3px
        border-radius:3px
      }
      但有的时候,页面中有些元素的圆角值不一样,那么可以随机给混合宏传值,如:
        .box {
          @include border-radius(50%);
        }
    编译出来的 CSS:
      .box {
        -webkit-border-radius: 50%;
          border-radius: 50%;
      }
混合宏的参数-传多个参数
    Sass 混合宏除了能传一个参数之外,还可以传多个参数,如:
        @mixin center($width,$height){
            width:$width;
            height:$height;
            position:absolute;
            top:50%;
            left:50%:
            margin-top:($height)/2;
            margin-left:-($width)/2;
        }
  在混合宏“center”就传了多个参数。在实际调用其他混合宏是一样的。
    .box-center{
        @include center(500px,300px);
    }
    编译出来 css
      .box-center{
        width:500px;
        height:300px;
        position:absolute;
        top:50%;
        left:50%;
        margin-top:-150px;
        margin-left:-250px;
        }
    有一个特别的参数“...”,当混合宏穿的参数传的参数过多之时,可以使用参数来代替 如;
        @mixin box-shadow($shadows...){
              @if length($shadows) >=1{
                  -webkit-box-shadow:$shadows;
                   box-shadow:$shadows;
                }@else{
                    $shadows: 0 0 2px rgba(#000,.25);
                    -webkit-box-shadow:$shadow;
                      box-shadow:$shadow;
                  }
                }
    在实际调用中:
        .box{
            @include box-shadow(0 0 1px rgba(#000,.5),0 0 2px rgba(#000,.2));
      }
    编译出来的css:
      .box{
          -webkit-box-shadow:0 0 1px rgba(0,0,0,0.5),0 0 2px rgba(0,0,0,0.2);
              box-shadow:0 0 1px rgba(0,0,0,0.5),0 0 2px rgba(0,0,0,0.2);
      }
混合宏的参数--混合宏的不足
      混合宏在实际编码中给我们带来很多方便之处,特别是对于复用重复代码块,但是最大的不足之处是生产
        冗余的代码块,比如在不同的地方调用一个相同的混合宏。
            @mixin border-radius{
                -webkit-border-radius:3px;
                  border-radius:3px;
            }
.            box{
                @include border-radius;
                 margin-bottom:5px;
            }
            .btn{
              @include border-radius;
            }
      示例在“.box”和“.btn”中等能调用了定义好的“border-radius”混合宏。先来看编译出来的css;
      .box{
        -webkit-border-radius:3px;
          border-radius:3px;
          margin-bottom:5px;
        }
      .btn{
          -webkit-border-radius;3ox;
          border-radius:3px;
    }
      sass 在调用相同的混合宏时,并不能智能的将相同的样式代码块合并在一起。这也是 Sass 的混合宏最不足之处

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor