CSS - Add Color with a data attribute - attr(data-color color)

前端 未结 6 1120
[愿得一人]
[愿得一人] 2020-12-14 08:16

I\'m trying to add color to different element with a data attribute in my css but doensn\'t work ...

I follow this instructions :

The attr() Function: Proper

6条回答
  •  独厮守ぢ
    2020-12-14 08:36

    If you are talking only about colors, you can use currentColor value as a proxy.

    For example:

    HTML

    
       
       
    
    

    CSS

    .bgborder {
      background-color: currentColor;
    }
    

提交回复
热议问题