在Bootstrap行的右侧显示删除按钮,在悬停时

时间:2014-10-29 14:18:37

标签: html css twitter-bootstrap twitter-bootstrap-3

我看到很多在容器上弹出删除按钮的例子。我想在行的右侧显示一个Twitter Bootstrap行。

<div class="row">
   <div class="col-md-4">
       Content
   </div>
   <div class="col-md-4">
       Content
   </div>
   <div class="col-md-4">
       Content
   </div>
</div>

许多样品涉及在容器上使用相对位置;但是,我不想弄乱.row上现有的表格显示,那么有没有更好的方法在popup上为twitter引导行做这个?

编辑:我想在右边显示一个按钮,以行为中心。带有以下标记的按钮:

<button ..><i class="icon-remove-sign"></i></button>

仅在悬停时显示。

1 个答案:

答案 0 :(得分:9)

请尝试以下代码:

HTML:

<div class="row">
   <div class="col-md-4">
       Content
   </div>
   <div class="col-md-4">
       Content
   </div>
   <div class="col-md-4">
       Content
   </div>
   <div class="hover-btn">
     <button type="button" class="close" data-dismiss="alert">
        <span aria-hidden="true">×</span>
        <span class="sr-only">Close</span>
     </button>
  </div>
</div>

CSS:

.row {
    position: relative;
  }

  .hover-btn {
     position: absolute;
     right: 15px;
     display: none;
  }

  .row:hover .hover-btn {
     display: block;
  }

Working Example