应用IE6所不支持的CSS的type选择器
作者 佚名技术
来源 CSS技术
浏览
发布时间 2012-03-02
应用IE6所不支持的CSS的type选择器,可以精确的选择各种表单元素。 简单,明了,可以分区出各个input控件形态。 type选择器,IE6之前的对web标准支持的不太好的浏览器不能支持。致命…… <!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> <title>IE6所不支持的CSS的type选择器 - www.52CSS.com</title> <meta name="Keywords" content=""/> <meta name="Description" content=""/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> input[type="text"] { background-color:#FFC; } input[type="password"] { background-image:url(BG.gif); } input[type="submit"] { background-color:blue; color:white; } input[type="reset"] { background-color:navy; color:white; } input[type="radio"] { /*In FF,Some radio style like background-color not been supported*/ margin:10px; } input[type="checkbox"] {   |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: CSS 框架BlueTrip特性下一篇: 网页制作经验:id与class的使用原则
关于应用IE6所不支持的CSS的type选择器的所有评论