文本不会在wordpress帖子中包装图像

时间:2013-10-14 21:04:31

标签: html css

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

<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;
}

2 个答案:

答案 0 :(得分:0)

不推荐使用align属性,因此我们将使用CSS:

.alignLeft {float: left;}

答案 1 :(得分:0)

正如Stefan在评论中所说,你错过了css浮动的例子:

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

将图像左对齐...如果需要,可以在其上放置一些边距用于间距