কম্পিউটার

কিভাবে CSS দিয়ে লেবেল স্টাইল করবেন?


CSS সহ লেবেল স্টাইল করতে, কোডটি নিম্নরূপ -

উদাহরণ

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      margin: 20px;
   }
   span {
      font-size: 18px;
      font-weight: 600;
      color: white;
      padding: 8px;
   }
   .success {
      background-color: #4caf50;
   }
   .info {
      background-color: #2196f3;
   }
   .warning {
      background-color: #ff9800;
   }
   .danger {
      background-color: #f44336;
   }
   .other {
      background-color: #e7e7e7;
      color: black;
   }
</style>
</head>
<body>
<h1>Labels Example</h1>
<span class="success">Success</span>
<span class="info">Info</span>
<span class="warning">Warning</span>
<span class="danger">Danger</span>
<span class="other">Other</span>
</body>
</html>

আউটপুট

উপরের কোডটি নিম্নলিখিত আউটপুট −

তৈরি করবে

কিভাবে CSS দিয়ে লেবেল স্টাইল করবেন?


  1. কিভাবে CSS দিয়ে একটি hr উপাদান স্টাইল করবেন?

  2. কিভাবে CSS দিয়ে স্ক্রলবার লুকাবেন?

  3. কিভাবে CSS দিয়ে তীর তৈরি করবেন?

  4. কিভাবে CSS দিয়ে হেডার স্টাইল করবেন?