Home Course Advance Excel Ethical Hacking Anonphisher TBomb Virus-Builder Seeker Linux Basic Tools Download Links CiLocks Fun Commond Cyber Security Advance Excel CMD Commond Excel Shortcut Excel Formating Shortcut Keys MS-Office Free Activation Commond Windows Free Activation Commond Windows Shortcut keys

🌐 What is CSS?

CSS (Cascading Style Sheets) is used to style the visual presentation of webpages, including color, layout, animation, spacing, and responsiveness.

🎯 Common CSS Properties with Examples:

💻 CSS Button Example:

button {
  background-color: #00ffff;
  color: #000;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #00cccc;
}

📦 CSS Selectors:

✨ Bonus: Animation Sample

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.box {
  animation: slideIn 1s ease-out;
}

💡 Practice regularly and explore Flexbox & Grid to build modern, responsive layouts.