gpt4 book ai didi

html - 放大和缩小时如何停止失真?

转载 作者:行者123 更新时间:2023-11-28 02:04:57 24 4
gpt4 key购买 nike

我正在研究 CSS,但在放大和缩小时遇到了一些问题。我已经设置了最大宽度和高度,但仍然面临一些挑战。这是我的 CSS。

你能告诉我我做错了什么吗?我想这样做,如果用户放大和缩小,CSS 将不会改变我的布局。现在不同的浏览器正在改变 CSS。

body {
position: relative;
overflow-x: hidden;
min-width:300px;
zoom: 0.8;
-moz-transform: scale(0.8);
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
body,
html {
height: 100rem;
background-color: #583e7e;
}
.chatboxPos {
position: fixed;
bottom: 11%;
left: 40%;
}
.allMsgs {
height: 580px;
overflow: auto;
width: 80%;
display: inline-block;
}
.oneMsg {
position: relative;
width: 100%;
z-index: 10000;
//overflow: auto;
}
.msgImg {
z-index: -1;
//z-index: 0;
position: absolute;
//top: inherit;
}
.sentMsg {
position: absolute;
left: 20%;
top: 5%;
width: 475px;
height: 150px;
//display: block;
overflow-y: scroll;
text-align: left;
color: #ffffff;
}
.msgSender {
font-size: 1.3em;
position: inherit;
right: 1%;
}
.msgContent {
font-size: 1.1em;
position: inherit;
left: 30%;
text-align: left;
}
.adjustImg {
width: 570px;
}
#style-2::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #F5F5F5;
}

#style-2::-webkit-scrollbar {
width: 30px;
background-color: #F5F5F5;
}

#style-2::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #D62929;
}
.whosHere table tr td img {
height: 50rem;
width: 35rem;
position: relative;
right: 35rem;
}

最佳答案

你应该为此使用媒体查询...如果可以的话,请转到 Bootstrap ......媒体查询很容易,而且学习曲线更短

关于html - 放大和缩小时如何停止失真?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49080091/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com