0

它有一个非常基本的代码,我确定我遗漏了一些东西。它是什么?

<div class="span8" id="pagecs">
<?php the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-content">
<?php 
if ( has_post_thumbnail() ) {
the_post_thumbnail();
} 
?>
<?php the_content(); ?>
</div> 
</div>

#pagecs {
font-family: 'Goudy Bookletter 1911', serif;
color: #405160;
}
4

2 回答 2

0

align 属性已被弃用,因此我们将使用 CSS:

.alignLeft {float: left;}
于 2013-10-14T21:09:32.670 回答
0

正如 Stefan 在评论中所说,您缺少 css 浮动,例如:

#pagecs .entry-content img {
    float:left;
}

将左对齐图像。如果需要,您可以在其上放置一些边距以进行间距

于 2013-10-14T21:10:38.230 回答