2-18兼容性应用

销户系统

1.兼容性学习

  .icon-notice {
    width: 160px;
    height: 160px;
    background: url('./img/notice-default.png') center no-repeat / cover;
    margin: 52px auto 18px auto;
  }

比如这个background的写法在低版本的浏览器无论是移动端还是PC端都是无法正常显示的,需要改成:

 background: #fff url( './img/checked-default.png' ) center;
        background-size: cover;
        background-repeat: no-repeat;

2.需要学习vuex 全家桶

猜你喜欢

转载自blog.csdn.net/qq_36620428/article/details/87633424