放置某物的正确方法是什么?我有一个在中心显示博客文章的 div。
<div class="box">
<?php while ( have_posts() ) : the_post(); ?>
<article>
<h2><a href="<?php esc_url( the_permalink() ); ?>"<?php the_title(); ?>" rel="bookmark"> <?php the_title(); ?></a></h2>
<h7>BY LOUIS MOORE ON</h7> <time datetime="<?php the_time( 'Y-m-d' ); ?>" pubdate><?php the_date(); ?> <?php the_time(); ?></time><?php the_content(); ?></br>
<div class="h9"></div>
</article></br></br></br>
<?php endwhile; ?>
</div>
CSS:
.box {
text-align: center;
background-color: #F1F2F2;
border: 1.5px #D1D3D4 solid;
border-bottom: 3px solid red;
margin: 5px;
padding: 10px;
min-width: 90%;
}
我想添加“在 Twitter 上关注我”,然后是 Twitter 按钮,但我希望它显示在 div 框的右侧。这样做的正确方法是什么?