style.css 497 B

1234567891011121314
  1. @charset "utf-8";
  2. /* 取消浮动,转块级元素 */
  3. .clear-both::before,.clear-both::after{
  4. content: '';
  5. display: block;
  6. clear: both;
  7. }
  8. .grad{
  9. background: -webkit-linear-gradient(left, #ff5c5c , #ff8f8f); /* Safari 5.1 - 6.0 */
  10. background: -o-linear-gradient(right, #ff5c5c, #ff8f8f); /* Opera 11.1 - 12.0 */
  11. background: -moz-linear-gradient(right, #ff5c5c, #ff8f8f); /* Firefox 3.6 - 15 */
  12. background: linear-gradient(to right, #ff5c5c , #ff8f8f); /* 标准的语法 */
  13. }