如何删除bootstrap 4中手风琴卡头的下边距?

问题描述 投票:1回答:1

如何从bootstrap手风琴中的card-header中删除margin-top。当崩溃接近时我想要margin-top,但是当打开崩溃然后移除margin-top。因为当打开倒塌时,则在倒塌的底部显示更多的空间。什么是该问题的解决方案,我也附加我想要的图像。

我想要这种类型的图像enter image description here

img {
  max-width: 100%;
}
  #accordion .card-header {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #eee;
  padding-left: 0;
  padding-right: 0;
  margin-top: 40px;
}
#accordion .card-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}
#accordion .card-header button {
  padding-left: 0;
  padding-right: 0;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 26px;
  text-decoration: none;
  color: #dc3545;
}
#accordion .card-header button:hover {
  color: #313131;
}
.card {
  border: none;
}
.collapse-content {
  padding: 50px;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">

<section class="main-wraper">
  <div class="container">
    <div class="row">
      <div class="col-12 text-center mt-4">
        <h1>Faq</h1>
      </div>
    </div>
    <div class="row">
      <div class="col-12">
        <div id="accordion">
          <div class="card">
            <div class="card-header" id="headingOne">
              <h5 class="mb-0">
                <button class="btn btn-link" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">Lorem Ipsum is simply 1</button>
              </h5>
            </div>

          <div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
          <div class="row h-100">
            <div class="col-md-6">
              <img alt="" src="http://placekitten.com/1000/500" />
            </div>
            <div class="col-md-6 collapse-content">
              <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap.</p>
              <button type="button" class="btn btn-danger">Submit</button>
            </div>
          </div>
        </div>
      </div>
      <div class="card">
        <div class="card-header" id="headingTwo">
          <h5 class="mb-0">
            <button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">Lorem Ipsum is simply 2</button>
          </h5>
        </div>
      <div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
        <div class="row h-100">
          <div class="col-md-6">
            <img alt="" src="http://placekitten.com/1000/500" />
          </div>
        <div class="col-md-6 collapse-content">
          <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap.</p>
         <button type="button" class="btn btn-danger">Submit</button>
       </div>
     </div>
   </div>
 </div>
 <div class="card">
   <div class="card-header" id="headingThree">
     <h5 class="mb-0">
       <button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">Lorem Ipsum is simply 3</button>
     </h5>
   </div>
 <div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
   <div class="row h-100">
     <div class="col-md-6">
       <img alt="" src="http://placekitten.com/1000/500" />
     </div>
   <div class="col-md-6 collapse-content">
     <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap.</p>
     <button type="button" class="btn btn-danger">Submit</button>
   </div>
 </div>
</div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>            
        </section>
        
        <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
html css html5 css3 accordion
1个回答
2
投票

如果要删除折叠底部的额外空间,只需删除h-100类。

现在,为了您想要的交互,添加一个类来添加或删除margin-top

这应该工作:

CSS:

#accordion .card-header.active {
  margin-top: 0;
}

注意:特异性很重要。

HTML(将'active'类添加到已打开的类,否则你不必):

<div class="card-header active" id="headingOne">

JQUERY:

$('.card-header .btn').click(function() {
    if (!$(this).parent().parent().hasClass('active')) {
        $('.card-header').removeClass('active');
        $(this).parent().parent().addClass('active')
    } else {
        $(this).parent().parent().removeClass('active')
    }
}))

这首先删除其余div的'active'类,然后添加到当前单击的div。

希望这可以帮助。

© www.soinside.com 2019 - 2024. All rights reserved.