gpt4 book ai didi

html - 搜索框未在 css3 中定位

转载 作者:行者123 更新时间:2023-11-28 16:27:59 25 4
gpt4 key购买 nike

input[type=text] {
margin-left: 63%;
margin-top: -100%;
width: 130px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
background-color: black;
background-image: url('searchicon.png');

background-repeat: no-repeat;
padding: 12px 20px 12px 40px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
}

input[type=text]:focus {
width: 150px;
}
  <form>
<input type="text" name="search" placeholder="Search..">
</form>

即使在输入 margin-top -100% 之后,搜索框也不会上升。它在-10% 后停止上涨。任何帮助将不胜感激。提前致谢。 :)

最佳答案

使用“position:relative”和“top:-100px”。它会将您的搜索框向上移动。您可以根据需要增加“最高”值。

input[type=text] {
margin-left: 63%;
width: 130px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
background-color: black;
background-image: url('searchicon.png');

background-repeat: no-repeat;
padding: 12px 20px 12px 40px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
position: relative;
top: -100px;
}

input[type=text]:focus {
width: 150px;
}

关于html - 搜索框未在 css3 中定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35738772/

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