坏人
坏人
  • 发布:2015-06-27 18:48
  • 更新:2015-06-27 18:48
  • 阅读:4015

【分享】 content 和 伪元素 哪些控件不支持

分类:HTML5+
<!DOCTYPE html>  
<html>  
<head>  
  <meta charset="utf-8">  
  <title>测试哪些元素支不支持伪元素</title>  
<style>  
input{  
  display: block;  
}  

body *:after{  
  content: "after";  
  color: red;  
}  

img{  
  padding:30px;  
  vertical-align: top;  
}  

</style>  
</head>  
<body>  
  <h1>测试哪些元素支不支持伪元素</h1>  
  <input type="text">  
  <input type="checkbox" name="" id="">  
  <input type="radio" name="" id="">  
  <input type="submit" value="Submit">  
  <input type="button" value="input">  
  <button>button</button>  
  <textarea name="" id="" cols="30" rows="10"></textarea>  
  <select name="" id="">  
    <option value="">select</option>  
  </select>  
  <hr>  
  <img src="https://www.baidu.com/img/bdlogo.png" alt="jb">  
  <iframe src="http://www.baidu.com" frameborder="0" width="500" height="300"></iframe>  
</body>  
</html>

text --- no
submit ---no
button --- no
textarea --- no
select ----no
img --- no
iframe -- no
=============
checkbox ----yes
radio ---- yes
button --- yes
hr --- yes
其它可以做成盒子的都支持

=============================

这个写得不全,各位需要测试的可以把这个COPY下去测试就行了。希望可以帮到大家。。。。。。。。。。。。

1 关注 分享
lobtao

要回复文章请先登录注册

lobtao

lobtao

在QQ浏览器6.1.4.1740版本上,是不支持checkbox、radio样式的。
微信是6.2.2版本也是不支持。显示为空。
2015-12-10 16:47
坏人

坏人 (作者)

回复 lobtao :
支持是YES,不支持是NO
2015-12-03 01:15
lobtao

lobtao

button 到底是支持,还是不支持?
2015-11-26 22:36