移动端&PC端CSS样式兼容代码

Posted zxk5211

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端&PC端CSS样式兼容代码相关的知识,希望对你有一定的参考价值。

CSS样式兼容代码

1.禁止选中复制文本

*
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;

2.单行文本溢出显示省略号…

p 
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    white-space: nowrap;

3.flex布局兼容

#app 
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;

4.iOS app滑动卡顿

.content div 
    /* 解决ios页面滑动卡顿 */
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    overflow-y: auto;
    /* overflow-y: scroll; */

5.渐变背景颜色

.box 
    width: 400px;
    height: 400px;
    background: linear-gradient(180deg, #fad961 0%, #f76b1c 100%);

6.去除PC端浏览器右侧滚动条

html 
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    overflow: hidden;
    overflow-y: scroll;
    scrollbar-width: none;


html::-webkit-scrollbar 
    width: 0 !important;

:css兼容代码不断更新和优化中...

以上是关于移动端&PC端CSS样式兼容代码的主要内容,如果未能解决你的问题,请参考以下文章

移动端填坑之路

移动端填坑之路

一个vue项目同时兼容pc和移动端

vuecli3 实现 移动端和pc端 界面切换(两套代码)

移动端css样式兼容

Html+Css+js实现春节倒计时效果(移动端和PC端)