我正在运行一个查询,该查询在行流体中输出span4元素。我在CSS中添加了代码,以删除行流体中第三个span4上的左边距。到目前为止,这也有效,但是span4之一突然跳了一条线。有什么建议为什么突然停止工作?

您可以在此处查看页面:
http://dtm-auto.ch/home/

我的CSS:

.row-fluid [class*="span"]:nth-child(3n+1) {
 margin-left: 0!important;
}


我的代码:

  <div id="content" class="clearfix row-fluid">
              <div id="main" class="span12 clearfix" role="main">

            <h2 class="text-left">Neue Fahrzeuge</h2>
                <div class="clearfix row-fluid">
            <?php
              global $wp_query;
   query_posts( array(
  'post_type' => 'acme_product',
'posts_per_page' => 6

));
 while ( $wp_query->have_posts() ) :
 $wp_query->the_post();
?><?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );?>

                <div id="front-new-video" class="span4">
                     <a href="<?php echo get_permalink(); ?>"><h3 id="car-title"><?php the_title(); ?></h3> </a>
                    <div class="thumbnail wrapper">
                     <div class="ribbon-wrapper-green"><div class="ribbon-green">Neu</div></div>
                   <a href="<?php echo get_permalink(); ?>"><?php the_post_thumbnail('medium');?></a>
                    <p>Preis: <span style="color:#FEF158"><?php the_field('preis'); ?> CHF</span></p>
                        <p>Jahr: <span style="color:#FEF158"><?php the_field('jahr'); ?></span></p>
                        <p>Farbe: <span style="color:#FEF158"><?php the_field('farbe'); ?></span></p>
                        <p>KM: <span style="color:#FEF158"><?php the_field('km'); ?> KM</span></p>

                        <a href="<?php echo get_permalink(); ?>"><h4> <i class="icon-chevron-sign-right"></i> Zum Fahrzeug </h4></a>
                </div>
                </div>
                   <?php
endwhile;

?>
              </div>





            </div> <!-- end #main -->
                </div> <!-- end #content -->

最佳答案

这是因为您在height: 100%上使用#front-new-video并没有做任何事情,因为需要捍卫父母的身高(行流体)才能使height: 100%正常工作。
改用固定高度或最小高度,您的问题将得到解决。例如height: 419px;

关于html - 引导行流体跨度跳线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20401451/

10-09 06:30