<div class="comments"> <!-- Container for all comments --> <div class="comment"> <!-- A single comment --> <!-- The content for the comment --> <p>Awesome post! You're amazing!</p> </div> <div class="comment"> <!-- A single comment --> <!-- The content for the comment --> <p>Well actually, I thought it was quite shitty.</p> </div></div>/* .comments targets anything with a class of comments */ /* the height property specifies how tall the element * is in pixels. *//* the overflow property specifies how the content will * be displayed if the size of the content is bigger than * the parent element */.comments { height:30px; overflow:auto; }.comment { height:20px; }.comment p { font-size:12px; }