梦之都
CSS教程
,
CSS E[att] 属性名选择符
示例
非红色文字
title属性,红色文字
表单的例子
用户名:
密码:
<!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] 属性名选择符示例</title> <style type="text/css" media="all"> a[title] { color:red; border: 1px solid blue; } input[type] { border: 1px solid blue; background: green; } </style> </head> <body> <p><a href="梦之都/">非红色文字</a></p> <p><a href="梦之都/" title="梦之都">title属性,红色文字</a></p> <h2>表单的例子</h2> <form id="dreamdu"> <label for="username">用户名:</label> <input type="text" id="username" name="username" value="dreamdu" size="15" maxlength="25" /> <label for="pass">密码:</label> <input type="password" id="pass" name="pass" size="15" maxlength="25" /> </form> </body> </html>