0

如何在导航栏的中心制作搜索框?您将在图片下方看到我的意思.. 将我的 css 代码发布到图片下方的搜索框..

在此处输入图像描述

   #advsearch {
   }
   #advsearch input[type="text"] {
       background: url(/images/search-dark.png) no-repeat 10px 6px #444;
       border: 0 none;
       font: bold 12px Arial, Helvetica, Sans-serif;
       color: #777;
       width: 150px;
       padding: 6px 15px 6px 35px;
       -webkit-border-radius: 20px;
       -moz-border-radius: 20px;
       border-radius: 20px;
       text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
       -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
       -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
       box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
       -webkit-transition: all 0.7s ease 0s;
       -moz-transition: all 0.7s ease 0s;
       -o-transition: all 0.7s ease 0s;
       transition: all 0.7s ease 0s;
   }
   #advsearch input[type="text"]:focus {
       width: 200px;
   }

提前非常感谢 :) 如果你愿意,也许我们可以一起在我的网站上工作?

这也是一个Js Fiddle以防万一你需要它不要介意图像不在那里它不应该产生差异

4

2 回答 2

1

这里需要修改一些css代码。

#cssmenu > ul > li > a {
    color: #A0A0A0;
    font-family: Verdana,'Lucida Grande';
    font-size: 15px;
    /*line-height: 70px;
    padding: 0;*/
    position: relative;
    top: 7px;
    transition: color 0.15s ease 0s;
}

演示:http: //jsfiddle.net/y5Fhc/8/

于 2013-06-04T05:07:29.743 回答
0

在搜索框的 li 中不需要锚点,我在搜索框的 li 中添加了一个类,使其位于导航栏的中心。

css

li.search{
    line-height:40px;
}

html

<li class='active search'><span>
     <form method="get" action="/search" id="advsearch">
       <input name="q" type="text" size="40" placeholder="Search..." />
     </form>
</li>

jsFiddle 文件

于 2013-06-04T05:10:00.393 回答