common.css中面向属性的类定义

来源:互联网 发布:人工智能的成功案例 编辑:程序博客网 时间:2024/05/20 12:46
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
0 0