Daily CSS Coding Challenge

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

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

CSS Button Styling

Write CSS code to style button element with background-color #F57A53 and text color #ffffff.

Input Format

No input.

Output Format

Valid CSS declaration.

Constraints

Use hex color codes.

Examples

Example 1:
Output:
button {
  background-color: #F57A53;
  color: #ffffff;
}
Explanation: Valid CSS rules for button
CSS
Theme:
Console Output
Press 'Run Code' to execute your program against the sample test cases.

Past Challenges

No past challenges available for this language.

Enter Submission Details
Hints Available
  1. background-color: #F57A53;
  2. color: #ffffff;
Challenge Completed!
🎉
🚀
🔥
🌟
🎊
🏆
✨ Daily Coding Challenge ✨
🎉 SUCCESSFULLY SOLVED 🎉
User Name
from Location
CSS Button Styling
Success Card
Generating your shareable success card...
Official Solution
Go Back Top