首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

用Css中的Type选择器界别各Input控件

2012-07-29 
用Css中的Type选择器区分各Input控件如:style typecss/text?input[typetext]{width:200px}input[

用Css中的Type选择器区分各Input控件

如:

<style type="css/text">

?

input[type="text"]

{

width:200px;

}

input[type="password"]

{

width:160px;

}

input[type="radio"]

{

width:80px;

}

input[type="checkbox"]

{

width:300px;

}

input[type="button"]

{

width:90px;

}

?

</style>

注:IE6之前的浏览器版本不支持。

?

热点排行