All pastes #2045699 Raw Edit

Anonymous

public html v1 · immutable
#2045699 ·published 2011-04-13 04:25 UTC
rendered paste body
<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; }