gpt4 book ai didi

html - 快速搜索向左中心 float

转载 作者:太空宇宙 更新时间:2023-11-04 15:39:26 27 4
gpt4 key购买 nike

我想通过几个问答将 QuickSearch 的 div 居中,但没有成功。 div 与背景图片一起 float 。

HTML

<div class="l-row">
<div class="QuickSearch">
<div class="loop"></div>
<form action=><div class="quickSearchInputName">xxx</div></form>
</div>
</div>

CSS

.QuickSearch {
background: url(/templates/_system/main/images/job-search-bg.jpg) no-repeat top left;
float:left;
width:900px;
height:170px;
display:block;
text-align:center;
margin: 0px auto 0px auto;
}

.loop {
/* background: url(quickSearch.png) no-repeat;*/
width: 10px; height: 135px;
display: block;
float: left;
margin: 0 0 0 2px;
}

l-row {
max-width:942px;
width:100%;
min-width:942px;
text-align:center;
}

最佳答案

好吧,你这里有一个固定大小的元素,所以我想你应该遵循经典:

.loop {
width: 10px; height: 135px;
...
position: absolute;
top: 50%;
left: 50%;
margin-top: -67px;
/* taking into account that margin-right: 2px in the original ruleset */
margin-left: -3px;
}

检查 this fiddle (不得不稍微改变一下,使用纯色而不是背景图像)。

关于html - 快速搜索向左中心 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12339869/

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