Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我在桌面和移动设备上的网站布局。
一旦有人点击蓝色,我想在页面顶部显示搜索表单link。因为搜索表单位于页面底部,我发现很难将position absolute其置于顶部。是否可以根据它使其绝对定位到包装器div,id或者我可以使用一些 jquery 使其在顶部弹出。请帮我解决一下这个。非常感谢。
link
position
absolute
div
id
试试这个....
<div class="link"> <div class="search"></div> </div>
CSS 代码
.link{position:relative;} .search{position:absolute; top:0px;}
如果你想它底部
.search{position:absolute; bottom:0px;}