如何在最小宽度中使用%来调整页面大小而不压缩内容

时间:2018-12-18 23:46:59

标签: html css

我体内的CSS为

body {
    max-width: 100%; 
    min-width: 1880px;
    border-radius: 5px;
    margin: auto;
    background: #eef6f9;
    overflow-y:scroll;
}

此最小宽度对我有帮助,因此不会使页面的内容最小化。我需要此最小宽度功能,以便不压缩内容,但我想用%或任何其他单位替换px而无需压缩。

我有3格

.column.side {
    min-width: 25px;
    width: 18%;
    border: 1px solid #d5e1e5;
    border-radius: 4px;
    box-shadow: 3px 3px 4px 1px #d5e1e9;
    padding: 20px 20px 20px 20px;
    margin-left: 1%;
    text-align: justify;

.column.middle {
    justify-content: center;
    align-items: center;
    width: 50%;
    min-width: 918px;
    background-color: #eef6f9;
    border: 1px solid #d5e1e5;
    border-radius: 4px;
    box-shadow: 3px 3px 4px 1px #d5e1e9;
    padding: 10px 10px 10px 10px;
    margin-left: 1%;
    margin-bottom: 10%;
}

.column.right {
    min-width: 25px;
    width: 22%;
    border: 1px solid #d5e1e5;
    border-radius: 4px;
    box-shadow: 3px 3px 4px 1px #d5e1e9;
    padding: 20px 20px 20px 20px;
    margin-left: 1%;
    text-align: justify;
    font-size: 70%;
}

这3个div占页面总数的100%。如何调整页面大小而又不压缩该部分来代替min-width的px?

使用min-width:1880px可以正常工作,但设置1880px似乎比较激进,并希望用%之类的其他单元替换。

0 个答案:

没有答案