CSS - style a link based on its “rel” attribute?

前端 未结 4 803
花落未央
花落未央 2020-12-02 20:25
 LINK 

is it possible to add css rules for rel=\"external\" ?

4条回答
  •  既然无缘
    2020-12-02 21:08

    Use the attribute selector:

    a[rel="external"] {
        color: red
    }
    

    http://jsfiddle.net/thirtydot/yUmJk/

    Works in all modern browsers, and IE7+

提交回复
热议问题