CSS “color” vs. “font-color”

前端 未结 3 346
挽巷
挽巷 2020-12-12 15:59

Anyone know why CSS provides color for text, but does not have font-color or text-color?

Seems very counter-intuitive, kind of

3条回答
  •  时光说笑
    2020-12-12 16:41

    I know this is an old post but as MisterZimbu stated, the color property is defining the values of other properties, as the border-color and, with CSS3, of currentColor.

    currentColor is very handy if you want to use the font color for other elements (as the background or custom checkboxes and radios of inner elements for example).

    Example:

    .element {
      color: green;
      background: red;
      display: block;
      width: 200px;
      height: 200px;
      padding: 0;
      margin: 0;
    }
    
    .innerElement1 {
      border: solid 10px;
      display: inline-block;
      width: 60px;
      height: 100px;
      margin: 10px;
    }
    
    .innerElement2 {
      background: currentColor;
      display: inline-block;
      width: 60px;
      height: 100px;
      margin: 10px;
    }

提交回复
热议问题