梦之都
CSS教程
,
CSS E[att=val] 属性值选择符
示例
红色
非红色
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS E[att~=val] 属性值选择符示例</title> <style type="text/css" media="all"> a[title~="dreamdu"] { color:red; } </style> </head> <body> <a href="http://www.dreamdu.com/" title="www dreamdu com">红色</a> <a href="http://www.dreamdu.com/" title="www com">非红色</a> </body> </html>