帮助定位搜索栏

发布于 2024-09-10 12:50:19 字数 555 浏览 1 评论 0原文

我的导航栏使用无序链接并使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陈独秀 2024-09-17 12:50:19

有几个选项最佳选项取决于您的整个布局。以下是水平导航列表和内联搜索的两个基本 CSS 实现。

HTML

<div id="Navigation">
    <ul>
        <li><a href="#">Link</a></li>
        <li><a href="#">Link</a></li>
        <li><a href="#">Link</a></li>
        <li><a href="#">Link</a></li>
    </ul>
    <div class="search">
        <input type="text" id="searchField" />
        <img src="go.jpg" alt="Search" onclick="alert('You clicked on search button')" />
    </div>
    <br style="clear: both;" />
</div>

CSS 浮动

#Navigation ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#Navigation ul li
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: left;
}
#Navigation ul li a
{
    display: block;
    height: 40px;
    width: 50px;
}
.search 
{
    background-image:url('search.jpg');
    float: right;
    width:200px;
    height:40px;
}

CSS 绝对

#Navigation
{
    position: relative;
}
#Navigation ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#Navigation ul li
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: left;
}
#Navigation ul li a
{
    display: block;
    height: 40px;
    width: 50px;
}
.search 
{
    position: absolute;
    background-image:url('search.jpg');
    top: 0;
    right: 10px;
    width:200px;
    height:40px;
}

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

<div id="Navigation">
    <ul>
        <li><a href="#">Link</a></li>
        <li><a href="#">Link</a></li>
        <li><a href="#">Link</a></li>
        <li><a href="#">Link</a></li>
    </ul>
    <div class="search">
        <input type="text" id="searchField" />
        <img src="go.jpg" alt="Search" onclick="alert('You clicked on search button')" />
    </div>
    <br style="clear: both;" />
</div>

CSS Float

#Navigation ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#Navigation ul li
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: left;
}
#Navigation ul li a
{
    display: block;
    height: 40px;
    width: 50px;
}
.search 
{
    background-image:url('search.jpg');
    float: right;
    width:200px;
    height:40px;
}

CSS Absolute

#Navigation
{
    position: relative;
}
#Navigation ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#Navigation ul li
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: left;
}
#Navigation ul li a
{
    display: block;
    height: 40px;
    width: 50px;
}
.search 
{
    position: absolute;
    background-image:url('search.jpg');
    top: 0;
    right: 10px;
    width:200px;
    height:40px;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文