我正在尝试将 div 居中在另一个 div 中。
这是我的 HTML
<div id="runway-category">
<a href="<?php the_permalink() ?>" class="runway-category-posts">
<div class="photo"><?php custom_get_post_attachments(get_the_ID(), $__width, $__height, get_the_title()); ?><div class="runway-title"><?php the_title(); ?></div></div>
</a>
</div>
这是CSS
.runway-category-posts{width:298px;height:500px;margin: 0 9px 18px 9px;float:left;display:block;}
.runway-title{text-align:center;font-family:tall_film;color:#FFF;font-size:20px;}
我应该在 css 中添加什么来做到这一点?
编辑 - 应该在 PHOTO div 中居中的 div 是 RUNWAY-TITLE