zoukankan      html  css  js  c++  java
  • css默认被后代inherite的属性列表

    css中的属性大部分都可以被继承,但是也有众多不能被继承,比如display, position,,left,right,top,bottom,float,width,border-color,border-style,text-decoration等不被继承。下面列出能被继承的属性。详细见下面的列表:

    http://www.w3.org/TR/CSS21/propidx.html

    注意:虽然比如margin,position等默认情况下并不继承,但是如果有必要的话,你可以显式指定我们希望从父元素那里继承这个属性。

    比如:

    p {margin: inherit; padding: inherit}

    上面这段代码就指定p元素继承他的父元素对应的margin和padding.

    azimuth

    border-collapse

    border-spacing

    caption-side

    color

    cursor

    direction

    elevation

    empty-cells

    font-family

    font-size

    font-style,font-weight,font,

    letter-spacing,

    line-height

    list-style-image

    list-style-position

    list-style

    list-style-type

    orphans

    quotes,

    richness

    speak-header

    text-align

    text-indent

    text-transformation

    visibility,

    white-space, z-index

  • 相关阅读:
    java框架
    MVC编程模式
    java各版本简单对比
    java设计模式
    ES中TF-IDF算法
    es分词器
    java应用零停机,时间索引重建(reindex)
    Spring源码由浅入深系列一 简介
    Spring源代码解析(收藏)
    spring源码读书笔记
  • 原文地址:https://www.cnblogs.com/kidsitcn/p/4420201.html
Copyright © 2011-2022 走看看