改变textarea,radio标签原始样式

resize:none

可以使text-area的右下角拉缩标识隐藏

 

appearance: none;-moz-appearance: none;-webkit-appearance: none;

radio,select,check-box的原始样式隐藏 

 

外套label标签隐藏里面的input 通过 ~ + 相邻符号前面选中状态下写样式

label input {
  display: none;
  }
  .wxz-state {
  display: inline-block;
  width: 0.32rem;
  height: 0.32rem;
  background: url(img/s_icon.png) center center no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
  margin-top: -0.05rem;
  margin-right: 0.15rem;
  }
  label input:checked+.wxz-state.xz-on{
  background: url(./img/s_icon1.png) center center no-repeat;
  background-size: 100% 100%;
 

posted @ 2018-03-05 17:02  铁甲雄心  阅读(178)  评论(2)    收藏  举报