LESSON 36 OF 100

Centre a message

Align a banner’s inline text in the centre.

Official sourceW3C CSS Text — text-alignReviewed: 2026-08-26
STEP 1 · LEARN

How it works

text-align describes inline content alignment within its block. The center value distributes remaining space on both sides of each line.

Correct example
.announcement { text-align: center; }

center is the CSS value for centred text alignment.

Common mistake
.announcement { text-align: middle; }

middle is not a valid value for text-align.

STEP 2 · APPLY

Your exercise

Complete the rule for .announcement with text-align: center.

STEP 3 · BUILD

Write and see the result

index.htmlCSS
Safe resultisolated
The draft stays only in this browser.HTML and CSS allowed · scripts and network blocked
STEP 4 · CHECK

What needs to pass

0%not checked
  • The text-align declaration uses center.
  • The target element is present on the page.
Explain the solution logic

The selector identifies the element, and text-align: center applies the exact requested change.