Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

กำหนดความกว้างของปุ่มด้วย CSS


หากต้องการกำหนดความกว้างของปุ่ม ให้ใช้คุณสมบัติความกว้าง CSS

ตัวอย่าง

คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อกำหนดความกว้างของปุ่ม -

<!DOCTYPE html>
<html>
   <head>
      <style>
         .btn {
            background-color: yellow;
            color: black;
            width: 120px;
            text-align: center;
            font-size: 15px;
            padding: 20px;
            border-radius: 15px;
            border: 3px dashed blue;
         }
      </style>
   </head>
   <body>
      <h2>Result</h2>
      <p>Click below for result:</p>
      <button class = "btn">Result</button>
   </body>
</html>