Don't take this wrong, but perhaps a crash course HTML/CSS would be a good idea for the general ideas...
To spell it out:
Code:
<style>
div.box1 {
width: 20em;
background-color:#D1D3D4;
border-bottom: 3px double;
border-top: 3px double;
border-left: 3px double;
border-right: 3px double;
padding: 1em;
margin-top: 1em;
line-height: 1.7em;
text-align: center;
float: right;
page-break-inside: avoid;
}
</style>
<div class="box1">Yadda, yadda, yadda, yadda, yadda, yadda.</div>
<div style="clear:both;"></div>