※1:
テキストの位置揃え(その他left,right)
と背景色を指定
CSS
<HEAD>
<style type="text/css">
.center { text-align:center;
background-color:lime; }
</style>
</HEAD>
<BODY>
<DIV class="center"> おはよう</DIV>
</BODY>