帮助定位搜索栏
我的导航栏使用无序链接并使用 jquery 实现 ui 效果。这很好用。现在我设计了一个与该栏主题相匹配的搜索栏,并希望将其放置在导航栏的右侧。有点像 vimeo 网站。
问题是我不能将它包含在同一个列表中,因为我不希望将 jquery 效果应用于搜索栏。如何将其放置在导航栏右侧?
不起作用
.search{
background-image:url('search.jpg');
margin-top:inherit;
margin-left:inherit;
width:200px;
height:40px;
}
这是我尝试过的 css,但在 html 中
<div class="search">
<input type="text" id="searchField" />
<img src="go.jpg" alt="Search" onclick="alert('You clicked on search button')" /></div>
I have my navigation bar using unordered links and using jquery for ui effects. This works fine. Now I have designed a search bar which matches the theme of the bar and wanna position it to the right of the nav bar. kinda like the vimeo website..
The problem is that i cannot include it in the same list cos i dont want the jquery effects to be applied to the search bar. How do i position it to the right of nav bar??
Heres the css i tried but doesnt work
.search{
background-image:url('search.jpg');
margin-top:inherit;
margin-left:inherit;
width:200px;
height:40px;
}
here goes the html
<div class="search">
<input type="text" id="searchField" />
<img src="go.jpg" alt="Search" onclick="alert('You clicked on search button')" /></div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几个选项最佳选项取决于您的整个布局。以下是水平导航列表和内联搜索的两个基本 CSS 实现。
HTML
CSS 浮动
CSS 绝对
There are a couple options The best option depends on your entire layout. Here are two basic CSS implementations of horizontal navigation list and search inline with each other.
HTML
CSS Float
CSS Absolute