And if your (or others) template does not include a defined style for Post (like mine,) you can add a fixed separator within the main index template, which will look something like this depending on your template:
<?php get_header(); ?>
<div id=”content”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”entry”>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<small><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –> Posted in <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></small>
<?php the_content(‘Read the rest of this entry »’); ?>
<!– place your separator between –>
<div style=”border-bottom: 1px solid #333333″></div>
<!– or –>
<HR>
<!– place your separator between –>
</div>
</div>