W3.CSS - Przyciski
W3.CSS ma bardzo piękny i responsywny CSS do dostosowywania wyglądu przycisku. Używane są następujące CSS -
Sr. No. | Nazwa i opis klasy |
---|---|
1 | w3-btn Reprezentuje standardowy przycisk. Może być również używany do stylizowania linku jako przycisku. |
2 | w3-btn-floating Reprezentuje pływający przycisk, który jest okrągły w projekcie. |
3 | w3-btn-floating-large Reprezentuje duży pływający przycisk. |
Przykład
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>
Wynik
Sprawdź wynik.