显示无占用空间

时间:2014-08-04 17:23:46

标签: javascript html css masonry

我的Pagination导航显示有问题:显示:无。当我检查inspect元素时它不占用空间,但由于某种原因,在分页导航的位置,有一个空白空间不应该在那里。

我尝试添加溢出:隐藏,可见性:无,高度:0,但它们都没有工作。

也许这与位置相对和绝对有关,我还不太了解它。

themeexp1.tumblr.com

编辑:它不是14px的保证金,它的利润率要大得多 空格:http://postimg.org/image/hiixhonoh/

HTML

<div id="content">

 <div class="container" id="{postID}">

  <div class="container-overlay"></div>

  <div class="photo inner">
    <a href="{permalink}">
      <img src="{block:indexpage}{PhotoURL-500}{/block:indexpage}{block:permalinkpage}{PhotoURL-HighRes}{/block:permalinkpage}" alt="{PhotoAlt}">
    </a>
  </div>
</div>

<nav id="pagination">
  <ul>
    {block:PreviousPage}<li><a href="{PreviousPage}">Previous page</a></li>{/block:PreviousPage}
    {block:NextPage}<li><a id="nextPage" href="{NextPage}">Next page</a></li>{/block:NextPage}
  </ul>
</nav>

</div>

CSS

#content{
margin: 0 auto;
position: relative;
}

.container{
margin-bottom: 14px;
}

.container-overlay{
width: 100%;
height: 100%;          
opacity: 0;
position:absolute;
}

.icons{
opacity: 0;
position: absolute;
left: 50%;
top: 50%;
width: 100%;
text-align: center;
}

#pagination{
display: none;
position: absolute; 
}

1 个答案:

答案 0 :(得分:5)

如果没有演示,很难说出你想要什么,但底部有空格,因为你的.container div有margin-bottom: 14px;

Example Fiddle