css自适应
作者:
阿杰_96c5 | 来源:发表于
2020-11-09 10:24 被阅读0次
css自适应
/* PC端CSS */
@media only screen and (min-width: 768px) {
.dormInfo-row{
min-width: 1300px;
}
.el-drawer{
/* margin-top: 6vh !important; */
width: 50% !important;
left: 25% !important;
overflow: auto;
padding: 30px 20px;
}
}
/* 移动端CSS */
@media only screen and (max-width: 768px) {
.dormInfo-row{
min-width: 100%;
}
.el-drawer{
overflow: auto;
position: fixed;
padding: 0px 20px 200px 20px;
/* overflow: scroll; */
}
}
本文标题:css自适应
本文链接:https://www.haomeiwen.com/subject/lvhlbktx.html
网友评论