我遇到了一些CSS问题,包括bootstrap和我的div以pin风格
我正在使用此代码使其正常工作
#columns {
-webkit-column-count: 3;
-webkit-column-gap: 0px;
-webkit-column-fill: auto;
-moz-column-count: 3;
-moz-column-gap: 0px;
-moz-column-fill: auto;
column-count: 3;
column-gap: 0px;
column-fill: auto;
}
.pin {
display: inline-block;
width:100% !important;
background: #FEFEFE;
-webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
column-break-inside: avoid;
}
我的HTML是
<div class="row top-buffer" id="columns">
<?php
$blog = Syscore::load_blog();
foreach($blog as $post)
{
?>
<div class="col-lg-4 col-md-4 col-sm-4 pin">
<div class="thumbnail">
<?php
if(!empty($post['main_image']))
{
echo '<img src="'.$post['main_image'].'" alt="'.$post['title'].'" style="width:300px !important;">';
}
else{
echo '<img data-src="holder.js/300x150" alt="...">';
}
?>
<div class="caption">
<h3><?=$post['title'];?></h3>
<p>
<?php
$content = html_entity_decode($post['content']);
preg_match('/^([^.!?]*[\.!?]+){0,3}/', strip_tags($content), $abstract);
echo self::limit_words($abstract[0],15)
?>...</p>
<p><a href="//<?=SITEURL;?>/<?=$post['url'];?>" class="btn btn-default" role="button">Read More</a></p>
</div>
</div>
</div>
<?php
}
?>
</div>
你将能够看到它正在做什么,而不排在顶部列 - http://www.russellharrower.com
请提出任何建议。