2015-08-31 3 views
2

Я пытаюсь создать что-то похожее на домашнюю страницу https://www.pinterest.com/, где высота определяется согласно содержимому Div &. Все divs автоматически настраивают его самостоятельно, используя bootstrap.Как получить динамическую высоту div в bootstrap

Я попытался это сделать, но он не работает должным образом. Вот скрипная ссылка того, что я пробовал http://jsfiddle.net/gmm2jcn5/

В скрипке мы видим, что есть белый промежуток между двумя divs. Я хочу устранить этот пробел.

.col-xs-6 { 
 
    border: 1px solid black; 
 
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/> 
 
<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.0.1/bootstrap.min.js"></script> 
 
<div class="row"> 
 
    <div class="col-xs-6"> 
 
     <p class="inntertopheading">heading</p> 
 
     <div class="hr"></div> 
 
     <div class="innter-md-text"> 
 
      text 
 
      <div class="spacer10"></div> 
 
      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 into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. 
 
     </div> 
 
    </div> 
 
    <div class="col-xs-6"> 
 
     Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
 
    </div> 
 
    <div class="col-xs-6"> 
 
     Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
 
    </div> 
 
    <div class="col-xs-6"> 
 
     Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's 
 
    </div> 
 
</div>

+0

Пожалуйста, включите короткий рабочий код здесь как ссылка может когда-нибудь истекает делая этот вопрос бесполезным для других. Благодаря! – Shawn

ответ

0

Попробуйте метод колонки CSS3, это требуется только CSS, без изменения разметки. Ниже скрипт будет корректировать в любом месте от 1 до 5 столбцов на основе ширины окна просмотра:

.col-xs-6 { 
 
    display: inline-block; 
 
    width: 100%; 
 
    border: 1px solid black; 
 
    -webkit-column-break-inside: avoid; 
 
    -moz-column-break-inside: avoid; 
 
    -o-column-break-inside: avoid; 
 
    -ms-column-break-inside: avoid; 
 
    column-break-inside: avoid; 
 
} 
 
    
 
/* Custom, iPhone Retina */ 
 

 
@media only screen and (min-width: 320px) { 
 
    .row { 
 
    -moz-column-count: 1; 
 
    -moz-column-gap: 0px; 
 
    -webkit-column-count: 1; 
 
    -webkit-column-gap: 0px; 
 
    column-count: 1; 
 
    column-gap: 0px; 
 
    width: 100%; 
 
    } 
 
} 
 
/* Extra Small Devices, Phones */ 
 

 
@media only screen and (min-width: 480px) { 
 
    .row { 
 
    -moz-column-count: 2; 
 
    -moz-column-gap: 10px; 
 
    -webkit-column-count: 2; 
 
    -webkit-column-gap: 10px; 
 
    column-count: 2; 
 
    column-gap: 10px; 
 
    width: 100%; 
 
    } 
 
} 
 
/* Small Devices, Tablets */ 
 

 
@media only screen and (min-width: 768px) { 
 
    .row { 
 
    -moz-column-count: 3; 
 
    -moz-column-gap: 10px; 
 
    -webkit-column-count: 3; 
 
    -webkit-column-gap: 10px; 
 
    column-count: 3; 
 
    column-gap: 10px; 
 
    width: 100%; 
 
    } 
 
} 
 
/* Medium Devices, Desktops */ 
 

 
@media only screen and (min-width: 992px) { 
 
    .row { 
 
    -moz-column-count: 4; 
 
    -moz-column-gap: 10px; 
 
    -webkit-column-count: 4; 
 
    -webkit-column-gap: 10px; 
 
    column-count: 4; 
 
    column-gap: 10px; 
 
    width: 100%; 
 
    } 
 
} 
 
/* Large Devices, Wide Screens */ 
 

 
@media only screen and (min-width: 1200px) { 
 
    .row { 
 
    -moz-column-count: 5; 
 
    -moz-column-gap: 10px; 
 
    -webkit-column-count: 5; 
 
    -webkit-column-gap: 10px; 
 
    column-count: 5; 
 
    column-gap: 10px; 
 
    width: 100%; 
 
    } 
 
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/> 
 
<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.0.1/bootstrap.min.js"></script> 
 

 
<div class="row"> 
 

 
        <div class="col-xs-6"> 
 
         <p class="inntertopheading">heading</p> 
 
         <div class="hr"></div> 
 
         <div class="innter-md-text"> 
 
          text 
 
         <div class="spacer10"></div> 
 

 
          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 into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. 
 
         </div> 
 
        </div> 
 

 
        <div class="col-xs-6"> 
 
        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
 
        </div> 
 
<div class="col-xs-6"> 
 
        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
 
        </div> 
 
<div class="col-xs-6"> 
 
        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's 
 
        </div> 
 
       </div>

0

Vaibhav шах Привет там. Чтобы каждый ДИВ блок имеет одинаковую Высоту независимо от содержания вы могли бы использовать немного JQuery, как это ...

$(document).ready(function(){ 
    var heightArray = $(".block1").map(function(){ 
     return $(this).height(); 
    }).get(); 
    var maxHeight = Math.max.apply(Math, heightArray); 
    $(".block2").height(maxHeight); 
    $(".block3").height(maxHeight); 
}) 

Вот рабочий Fiddle.

Помогло ли это в том, что вы хотите здесь?

Если вы измените размер окна с помощью мыши, просто обновите и увидите, что блоки блоков заменяют все одинаковые высоты.

enter image description here

Смежные вопросы