zoukankan      html  css  js  c++  java
  • CSS和CSS3中的伪元素和伪类(总结)

        好多人伪类和伪元素分清楚,其实就是一句话,“伪类的效果可以通过添加一个实际的类来达到,而伪元素的效果则需要通过添加一个实际的元素才能达到”。

        CSS中伪类包括:

            :first-child

            :lang

            :active

            :focus

            :hover

            :link

            :visited

         CSS中伪元素包括:

          :first-letter

          :first-line

          :before

          :after

    CSS3中明确规定伪元素用::表示,伪类用:表示,因此,

    CSS3中的伪类有

    动态伪类

        :active

        :focus

        :hover

        :link

        :visited

    状态伪类:

        :enabled

        :disabled

        :checked

    :nth选择器

             :first-child

             :last-child

             :nth-child(n)

             :first-of-type

             :last-of-type

             :only-child

             :nth-last-child(n)

             :nth-last-of-type(n)

             :empty

             :only-of-type

             :nty-of-type

    CSS3中的伪元素有

             ::first-letter

             ::first-line

             ::before

             ::after

             ::selection (新加)

  • 相关阅读:
    hdu4472-Count
    Codeforces Beta Round #55 (Div. 2)
    优化素数表
    Codeforces Beta Round #49 (Div. 2)-D. Physical Education
    Codeforces Beta Round #49 (Div. 2)-C. Little Frog
    一些不知道的函数
    kmp算法详解
    STL之accumulate用法小结
    STL——list学习笔记
    maven打war包包含源文件-eclipse
  • 原文地址:https://www.cnblogs.com/lovemomo/p/4878304.html
Copyright © 2011-2022 走看看