Daily CSS Coding Challenge

Sharpen your programming skills by solving a new CSS coding problem everyday!

Ends In: --:--:--
Solution Available In: --:--:--
Jul
24
2026
Easy 50 Points

CSS Center Alignment

Write CSS rule for class .title to set text-align to center and font-weight to bold.

Input Format

No input.

Output Format

CSS declaration block.

Constraints

Target .title selector.

Examples

Example 1:
Output:
.title {
  text-align: center;
  font-weight: bold;
}
Explanation: Valid CSS selector rules
CSS
Theme:
Console Output
Press 'Run Code' to execute your program against the sample test cases.
Enter Submission Details
Hints Available
  1. text-align: center;
  2. font-weight: bold;
Challenge Completed!
🎉
🚀
🔥
🌟
🎊
🏆
✨ Daily Coding Challenge ✨
🎉 SUCCESSFULLY SOLVED 🎉
User Name
from Location
CSS Center Alignment
Success Card
Generating your shareable success card...
Official Solution
Go Back Top