如何最小化我的品牌组件之间的空间

时间:2013-11-11 13:39:31

标签: html css layout

我有一个顶级导航栏,但目前是登录用户名,日期&时间和搜索之间有很多空格如下: -

enter image description here

但是有没有办法最小化组件之间的空间,如下所示: - enter image description here

我目前用于顶部导航的html是: -

<section id="login" class="navbar-search pull-right">
<span class="username" style=" display:block;"><i class="icon-user"></i><strong> @User.Identity.Name.Substring(User.Identity.Name.IndexOf("\\") + 1)</strong></span>
<div style="text-align:right">
<p id="currentdate"></p>
<p id="currenttime" ></p>   
    </div>
<form class="customSearch" method="GET" action="@Url.Action("Search", "Home")">
<input  class="searchInput" placeholder="Search" name="searchTerm2" data-autocomplete-source= "@Url.Action("AutoComplete", "Home")" type="text"  />
</form>
                    </section>

2 个答案:

答案 0 :(得分:2)

我建议您使用Chrome浏览器检查元素并查看CSS中的错误位置,简单方便,我会一直这样做。

答案 1 :(得分:0)

在css中使用line-height,margin或padding属性。