gpt4 book ai didi

css - 响应式 CSS : Prevent a search bar and button from getting bigger when zoomed in?

转载 作者:太空宇宙 更新时间:2023-11-04 02:09:40 25 4
gpt4 key购买 nike

大约一年前,我创建了一个响应式网站,并采用了 Big Commerce 主题并将其更改为我自己的主题。我在标题的搜索栏旁边放了一个按钮。为了测试响应能力,我放大和缩小以查看会发生什么。当我这样做时,搜索栏和按钮似乎会四处移动并变大。我希望它像页眉、包按钮和电话号码一样留在原处。这是我的代码...

/* CSS */
#SearchForm2 {
position: absolute;
right: 0;
top: 3%;
z-index: 52;
width: 25%;
height: auto;
display: block;
}
#SearchForm2 form {
padding: 0;
margin: 0;
display: block;
}
#SearchForm2 label {
display: none;
}
#SearchForm2 input {
display: block;
height: auto;
width: auto;
font-weight: 400;
text-transform: uppercase;
padding: 2px 3px 2px 3px;
}
#SearchForm2 p {
display: none;
margin: 5px 0 0 0;
}
#SearchForm2 input.Textbox {
float: right;
font-size: 100%;
width: 59%;
height: auto;
display: block;
padding: .5em 1em;
text-transform: none;
line-height: 17px;
background-color: transparent;
border: 1px solid #000;
vertical-align: middle;
}
.searchbtn2 {
float: right;
width: 39%;
height: auto;
font-size: 100%;
display: block;
margin: 0px 3px 0 0;
cursor: pointer;
font-weight: 500;
text-transform:uppercase;
font-family: "Cabin", Arial, Sans-serif;
*display: inline;
*zoom:1;
text-align: center;
vertical-align: middle;
border: none;
padding: 5px 10px 4px 10px;
-webkit-border-radius: 0;
border-radius: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
background-color: #454545;
color: #fff;
border: 2px solid #454545;
}
.searchbtn2:hover {
background-color: #ffffff;
color: #000;
}
<!-- Header Search -->
<div id="SearchForm2">
<form action="%%GLOBAL_ShopPath%%/search.php" method="get" onsubmit="return check_small_search_form(this)">
<label for="search_query">%%LNG_Search%%</label>

<input type="text" name="search_query" id="search_query" class="Textbox autobox" value="%%LNG_Search%%" />

<button type="submit" class="searchbtn2" name="Search" title="Search">Search</button>
</form>
</div>

这里有一个链接可以看到它的实际效果:https://www.luxuryeyesite.com/test3/

最佳答案

您使用的是字体大小的百分比。随着输入被放大,百分比也会增加。如果您不希望发生这种情况,您需要停止在 #SearchForm2 input.Textbox.searchbtn2

上使用百分比

此外,这不是我推荐的测试响应能力的方式。如果您使用的是 Chrome,请打开开发人员工具并选择“切换设备工具栏”按钮以获得更准确的表示。

Chrome developer tools

关于css - 响应式 CSS : Prevent a search bar and button from getting bigger when zoomed in?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40006038/

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