如何纯在CSS里定义input样式,不添加任何多余的HTML代码

我们在写CSS的时候经常会遇到这种情况:
<input type="text"/>
<input type="submit" value="提交"/>
一半来说,我们都会赋予text和input不同的id或者class来分别定义输入框和按钮的样式,例如:
<input type="text" id="text"/>
<input type="submit" value="提交" id="submit"/>
但是,如果我们只想把网页中所有的text以及submit都分别定义为相同的样式,那么,我们可以用下面的方法来实现:
例1:
<style type="text/css">
input { width:expression((type=="text")?350:80); }
input[type="text"] { width:350px; }
input[type="submit"] { width:80px; }
</style>
<input type="text"/>
<input type="submit" value="提交"/> 

例2:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
input { width:expression((type=="text")?350:80); }
input { background-color:expression((type=="submit")?"#000000":""); }
input[type="text"] { width:680px; }
input[type="submit"] { width:80px; background:#000000; color:#FFFFFF;}
</style>
</head>

<body>
<input type="text"/>
<input type="submit" value="提交"/>
</body>
</html>



文章来自: 本站原创
引用通告地址: http://www.is21.cn/trackback.asp?tbID=105
Tags:
评论: 0 | 引用: 0 | 查看次数: 2224
发表评论
你没有权限发表留言!