Style HTML element based on its title using CSS

前端 未结 5 1757
慢半拍i
慢半拍i 2021-01-08 01:33

Is it possible to apply a style to an HTML element using only its title as a unique identifier? For example:


      
5条回答
  •  北荒
    北荒 (楼主)
    2021-01-08 01:54

    What you are looking for is css attribute selectors:

    http://www.w3.org/TR/CSS2/selector.html#attribute-selectors

    a[title] { ... }

提交回复
热议问题