If the user of your theme wants to style a single post differently than all of the others, the only way for you to make this easy for them is by giving each post a unique identifier. To do this, simple make use of “the_ID” in The Loop.
<div class="post-container" id="post-<?php the_ID(); ?>"> <!-- Post Content --> </div>

