Forum Moderators: mack
.box{border:1px solid #000;}
That will put a bordered box around any element you assign that class to. You'll want to experiment with padding and/or margin to achieve the desired results...
.box{border:1px solid #000;margin:0;padding:10px;}
This would be a paragraph that uses the .box generic class...
<p class="box">Content here with a border around it.</p>