Text Alignment with CSS

Example aligning text using CSS.

Preview

Code

<style>
.center {
  text-align:center;
}
</style>

<p class="center">This paragraph is centered.</p>

More HTML CSS Examples (9)