如何使用css中的标题为元素赋予属性

时间:2016-06-27 10:42:34

标签: html css properties

是否可以使用其标题为元素提供属性?

示例:

 #id > a.class

但是标题而不是ID

 "title" a.class

1 个答案:

答案 0 :(得分:2)

是的,有可能,请参阅下面的代码:

$output = Get-ChildItem 'your_path_here' -Filter '*.txt' | Foreach { $_ | Get-Content | Select -Skip 1 }
$output -join "`n" | out-file 'mybigfile.txt'
a[title="test"] {
 color : red;
}