-3

我对一些基本的 css 内容有疑问,我正在网上浏览此内容,但找到了示例,但没有一个可以解释我的问题:

页面模板 [HTML]:

    <div id="container" class="gallery-list"> <!-----gallery-list---->
    <div id="content" role="main">
        <h1 class="page-title"><?php the_title(); ?></h1>
        <div id="gallery-list-container" class="list-container">
                <?php wp_reset_query(); ?> 
                <?php
                // Set up the arguments for retrieving the pages
                $args = array(
                    'post_type' => 'page',
                    'numberposts' => -1,
                    'post_status' => null,
                // $post->ID gets the ID of the current page
                'post_parent' => $post->ID,
                    'order' => ASC,
                    'orderby' => title
                    );
                 $subpages = get_posts($args);
                  if ($subpages[0]) :?>
                        <div class="gallery-list-wrap">
                            <?php
                             // Just another WordPress Loop
                             foreach($subpages as $post) :
                                setup_postdata($post);
                            ?>
                                <div id="post-<?php the_ID(); ?>" class="list-entry-container">
                                    <?php 
                                        $count++;
                                        // Show the Post thumbnail
                                        if ( has_post_thumbnail() ) : ?>

                                                <div class="list-entry">
                                                    <a class="size-small" href="<?php the_permalink(); ?>"><?php the_post_thumbnail('thumbnail'); ?></a>
                                                    <h2 class="list-entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'highart' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
                                                </div><!-- .entry-content -->                   
                                            <?php
                                        // Show the High Art image
                                         else : ?>
                                            <div class="entry-content">
                                                <?php highart_entry_image_attachment('thumbnail') ?>
                                            </div><!-- .entry-content -->                       
                                        <?php endif; ?>

                                        <div class="entry-utility">
                                            <?php edit_post_link( __( 'Edit', 'highart' ), '<span class="edit-link">', '</span>' ); ?>
                                        </div><!-- .entry-utility -->
                                </div>
                        <?php endforeach; ?>
                    </div>
                 <?php endif; ?>
        </div>
    </div><!-- #content -->
</div><!-- #container -->

[CSS]

#main .gallery-list{margin:0;width:925px;overflow:hidden; display:block;}
#main .gallery-list #content{width:925px;}
.list-container{margin:0 auto; display:block; padding:11px 0 0; list-style:none; border-bottom: 1px solid lightgray;}
.gallery-list #gallery-list-container {margin-top:-22px;float:none; width:925px;}
.gallery-list li {display:inline;width:185px;height:241px;margin-right:25px;padding:22px 0 44px;border:1px solid lightgray;border-width:0 0 0; position:relative; overflow:hidden;}
.gallery-list #gallery-list-container li {min-height:252px; display:inline;clear:none;padding-bottom:25px;}
.gallery-list-wrap{display:inline; float:left; margin:0 auto;}
.list-entry-container {display:inline; float:left;}
.gallery-list .list-entry{display:inline;width:165px;font-size: 9px; font-weight:400; line-height:11px; text-transform:uppercase; padding:5px 0 6px;}
.gallery-list-line-wrap{margin: 0 auto; display:block;}

为什么 div: gallery-list-wrap 不以容器为中心?它只是保持与容器的左侧对齐。

在这种情况下,我真的不明白浏览器是如何处理这个的。

可能是一个新手问题,但我似乎无法弄清楚

EDIT1: 根据下面的答案,这可能是一个有问题的方法,所以有一些背景故事:我有一个 div,其中包含带有缩略图和页面标题的子页面的 div。到目前为止这么好问题是我不知道有多少所以我不知道我是否每行有 1、2、3 或 4 个我希望每行最多有 4 个并且每行以容器为中心

这是可行的吗?

感谢帮助。

4

2 回答 2

1

删除:

display: inline;
float: left;
于 2012-08-15T10:42:06.403 回答
1

你需要删除

display:inline;
float:left;

并为画廊列表包装添加宽度。

目前,您将 margin-left 和 margin-right 设置为 auto ,这是正确的做法,但是要使其正常工作,您还需要定义宽度。

因此,如果您有两个 div,请计算出它们的组合宽度并将其应用于 gallery-list-wrap。

我希望这有帮助。

于 2012-08-15T10:45:56.580 回答