定位的正确方法是什么?我有一个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框的右侧。这样做的正确方法是什么?
答案 0 :(得分:1)
.followme {
position: absolute;
left:30%;
bottom: 70%;
}
答案 1 :(得分:0)
float: right;
如果你想要它在同一个范围内,它会工作,如果你想在盒子之外你可以创建一个容器来存储它们。
<div class="container">
<div class="box">...</div>
<a href="#">Follow me on Twitter</a>
</div>
.contianer a {
float: right;
}