W3.CSS - Tasten
W3.CSS verfügt über ein sehr schönes und ansprechendes CSS zum Anpassen des Erscheinungsbilds einer Schaltfläche. Das folgende CSS wird verwendet -
Sr. Nr. | Klassenname & Beschreibung |
---|---|
1 | w3-btn Stellt eine Standardschaltfläche dar. Kann auch zum Stylen eines Links als Schaltfläche verwendet werden. |
2 | w3-btn-floating Stellt eine schwebende Schaltfläche dar, deren Design kreisförmig ist. |
3 | w3-btn-floating-large Stellt eine große schwebende Schaltfläche dar. |
Beispiel
w3css_buttons.htm
<html>
<head>
<title>The W3.CSS Forms</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "https://www.w3schools.com/lib/w3.css">
</head>
<body class = "w3-container">
<h2>Standard Buttons</h2>
<button class = "w3-btn">Click Me</button>
<button class = "w3-btn w3-teal">Click Me</button>
<button class = "w3-btn w3-disabled">I am disabled</button>
<h2>Links as Buttons</h2>
<a class = "w3-btn">Link</a>
<a class = "w3-btn w3-teal">Link</a>
<a class = "w3-btn w3-disabled">Disabled Link</a>
<h2>Floating Buttons</h2>
<a class = "w3-btn-floating">+</a>
<a class = "w3-btn-floating w3-teal">+</a>
<a class = "w3-btn-floating w3-disabled">+</a>
<h2>Large Floating Buttons</h2>
<a class = "w3-btn-floating-large">+</a>
<a class = "w3-btn-floating-large w3-teal">+</a>
<a class = "w3-btn-floating-large w3-disabled">+</a>
</body>
</html>
Ergebnis
Überprüfen Sie das Ergebnis.