当前位置: 首页 > 知识库问答 >
问题:

为什么这么多垂直偏移量的HTML列表在Chrome-空白从PHP或样式?

卫华奥
2023-03-14
<ul class="gridRow">
    <li class="cell-2-4 first-child linkBox">
        <a href="<?php echo site_url(); ?>/pianos/" class="pianosLarge">Pianos</a>
        <p>other Links</p>
    </li>
    <li class="cell-2-4 last-child">
        <div class="home-news">
        <?php foreach ($recentposts as $post) : {
            setup_postdata($post);?>
            <h2><?php the_title();?></h2>
            <?php the_content();?><?php
            }
        endforeach;
        wp_reset_query();?>
        </div>
    </li>
</ul>

CSS:

.gridRow li {
    height:100%;
    display:inline-block;
    margin-left: -4px; 
    margin-right: 30px;
    overflow: auto;
}

.cell-2-4 {
    width: 474px;
}

.linkBox a {
    display: block;
    height: 225px;
    padding: 0.6em;
    font-size: 2em;
}

.linkBox p {
    padding: 0 1em 0 1em;
    border-top: 1px solid lightgray;
}

li.first-child {
    margin-left: 0; 
}

li.last-child {
    margin-right: 0; 
}

编辑:按Stackerr请求得$RecentPosts得var_dump:

object(WP_Post)#288(24){[“id”]=>int(54)[“post_author”]=>string(1)“1”[“post_date”]=>string(19)“2013-06-24 10:23:20”[“post_date_gmt”]=>string(19)“2013-06-24 10:23:20”[“post_content”]=>string(64)“我们在siteName出售descant,高音录音机...“[”post_title“]=>string(33)”新学期录音机“[”post_excerpt“]=>string(7)”publish“[”comment_status“]=>string(4)”open“[”ping_status“]=>string(4)”open“[”post_password“]=>string(0)”[“pinged”]=>string(11)“tune-pianos”[“to_ping”]=>string(0)“[”pinged“]=>string(19)”2013-06-24 10:31:37“[”

共有1个答案

邢浩邈
2023-03-14

我想你可能想用花车。内联块和高度100%属性似乎有问题。

编辑:如果你不想使用浮点,那么就用这个:

display:table-cell;

而不是内联块。

.gridRow li {
    float: left;
    display: block;
    margin-left: -4px; 
    margin-right: 30px;
    overflow: auto;
}
.clear{ clear: both; }

<div class="clear"></div>
 类似资料:
  • 我有一个由我的WordPress主题提供的社交类如下,它垂直放置: 我正在尝试将此列表放置在一条水平线上 但我被困住了。有人有主意吗?

  • 问题内容: 我的要求是这样的: 我在数据库和时区中以毫秒为单位保存时间,例如以毫秒为单位的时间 很长,而时区为。我必须将其转换为时区。 要检查我引用此:链接 我的问题是: 如果时区只是不同格式的时间表示(地理区域偏离GMT),为什么我需要从实际时间中减去偏移时间? 为什么我不能忽略保存在数据库中的时区,而只考虑要转换日期的时区? 就像是: 我的系统时区是,我想将时区中的日期转换为时区。以上代码在这

  • 有25种类型的空白。在下面的代码中显示,25种类型中有4种在Java中不被视为空白。为什么? 参考-https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/character.html#IsWhitespace(char)

  • 在移动视图中,当我尝试垂直滚动时,网页被卡住。在中,我有

  • 如上图所示,列表中的每个数字(1,2,3…)都有一条垂直线。我们如何在react js中实现这一点?