zoukankan      html  css  js  c++  java
  • INHERITED AND NON-INHERITED IN CSS

    When I look up css properties in MDN's specifications section, there are some properties in it and it seems unfamiliar to me. So I try to find out some of them today.

    Initial value between inherited and non-inherited

    The initial value of a CSS property is its default value.

    The Initial value has two different behavior between inherited properties and non-inherited properties.

    For inherited properties, the initial value is used on the root element only.

    <span style="color: red">
      hello, <em>CSS</em>
    </span>
    

    The result is the color of both span and em element are red. Because the color is an inherited property, the element will get the color property from the parent recursively until to document.

    For non-inherited properties, the initial value is used on every element. When no value for a non-inherited property has been specified on an element, the element gets the initial value directly.

    <span style="border: 1px solid black">
      hello, <em>CSS</em>
    </span>
    

    The result is the border is only effected on span element, not em. Because the border is a non-inherited property, and there is no border property specified on the em, so the em get the border's initial value none.

    It mentioned much times about inherited value and non-inherited value above, and now we sort out css properties.

    Inherited Type

    I've collected some inherited types in css, they are listed as follow:

    • Font Type: font-style、font-variant、font-weight、font-stretch、font-size、font-family、color、line-height;
    • Space Type: letter-spacing、word-spacing、white-space;
    • Letter Type: text-align、text-indent、text-shadow、text-transform;
    • List Type: list-style、list-style-type、list-style-position;
    • Others: visibility、cursor;

    Non-Inherited Type

    In the opposite of inherited type, the non-inherited types are listed as follow:

    • Layout Type: float、position、left、right、top、bottom、z-index、display
    • Box Type: width、max-width、min-width、height、max-height、min-height、margin、padding、border;
    • Background Type: background-size、background-image、background-clip、background-color、background-origin、background-position、background-repeat;
    • Others: overflow、text-overflow、vertical-align;

    Recap

    These section introduces the inherited concept in CSS, and distinguish some inherited type and some non-inherited type from css properties. Hope it's helpful for you.

    Read More

  • 相关阅读:
    Neo4j 第五篇:批量更新数据
    Neo4j 第四篇:使用.NET驱动访问Neo4j
    Neo4j 第三篇:Cypher查询入门
    Neo4j 第二篇:图形数据库
    Neo4j 第一篇:在Windows环境中安装Neo4j
    ElasticSearch入门 第九篇:实现正则表达式查询的思路
    ElasticSearch入门 第八篇:存储
    ElasticSearch入门 第七篇:分词
    ElasticSearch入门 第六篇:复合数据类型——数组,对象和嵌套
    Package 设计3:数据源的提取和使用暂存
  • 原文地址:https://www.cnblogs.com/MuYunyun/p/12002768.html
Copyright © 2011-2022 走看看