Typography
text-align
Learn how to use the CSS text-align property.
CSS text-align
The text-align property sets the text align for an HTML element.
Syntax
.element {
text-align: center;
}
HTML Context Example
<div class="card">
This is a styled element.
</div>
<style>
.card {
text-align: center;
}
</style>
Notes
Experiment in the CSS playground to see how this affects layout and styling.