div行和列背景颜色

时间:2014-10-15 06:44:52

标签: html css backbone.js row

我的行背景有问题我不能最大化左边的内容,所以我有这个不同颜色的小空间。

屏幕截图 - http://i.imgur.com/gOtYJhQ.png

我需要使用与内容相同的颜色更改剩余的小空间。

CSS

.row .twelve {
    background: #f2eee3;
}

HTML

<div class="row" style="box-shadow: 0 3px 0px 0px #888888,  7px 0 7px -4px #888888, -7px 0 7px -4px #888888;">
<?php get_header(); ?>
            <div id="content">              
                <div class="twelve columns clearfix">
                    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

                    <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article" itemscope itemtype="http://schema.org/BlogPosting">

                        <section class="nine columns clearfix" itemprop="articleBody" style="border-right: 1px solid #a79c7f; min-height:450px; background:transparent;">
                        <!-- article header -->
                        <header>
                        <!--h1 class="page-title" itemprop="headline"><?php the_title(); ?></h1-->
                        </header> 
                                    <!-- end article header -->
                            <?php the_content(); ?>

                        </section> <!-- end article section -->
                        <?php get_sidebar(); // sidebar 1 ?>
                        <footer>

                            <?php the_tags('<p class="tags"><span class="tags-title">Tags:</span> ', ', ', '</p>'); ?>
                        </footer> <!-- end article footer -->
                    </article> <!-- end article -->             
                    <?php endwhile; ?>      
                    <?php else : ?>
                    <?php endif; ?>
                </div>    
                </div> <!-- end #main -->
<?php get_footer(); ?>
        </div> <!-- end #content-->

我将html更改为此并应用了一些内联样式,但我现在的问题是内容的边框与页眉和页脚切割不对齐。

http://i.imgur.com/4xfaQJr.png

网络链接 -

http://fabioide.com/frederiksminde/vaerelser/

2 个答案:

答案 0 :(得分:1)

CSS

.row .twelve {
background: #f2eee3;
padding: 0px; /* added this */
    }

.row .nine {
background: #e8e6d2; /* added this */
}

调整滑块图像的大小,使其与下面的分隔线对齐

答案 1 :(得分:0)

增加宽度并减少div的margin-left值。通过这样做,差距将由div本身取代。