gpt4 book ai didi

html - 定位搜索分区

转载 作者:行者123 更新时间:2023-11-28 08:28:54 26 4
gpt4 key购买 nike

我有问题,我想将搜索结果设置为如图所示:http://prntscr.com/62bbce (为我糟糕的绘画技巧感到抱歉:/)

但我明白了:http://prntscr.com/62bbpw

这是我的CSS代码:

#search{
margin-left:100px;
width:300px;
border-radius:5px;
}
#search_results{
position:absolute;
background:white;
font-size:17px;

}

最佳答案

如果您希望两个 div 的宽度相同,您也必须将搜索结果的宽度设置为 300px。

#search_results{    
position:absolute;
background:white;
font-size:17px;
width: 300px;
}

您将其定位为与其他 div 相同的方式:

#search_results{    
border:1px solid grey;
background:white;
font-size:17px;
width: 300px;
margin-left: 100px;
margin-top: 15px
}

完整代码:http://codepen.io/anon/pen/raYdLw

关于html - 定位搜索分区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28387441/

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