Pure.CSS - Formularze
Pure.CSS ma bardzo piękny i responsywny CSS dla projektów formularzy. Używane są następujące CSS -
Sr.No. | Nazwa i opis klasy |
---|---|
1 | pure-form Reprezentuje zwarty formularz wbudowany. |
2 | pure-form-stacked Reprezentuje formularz skumulowany z elementami wejściowymi poniżej etykiet. Do użytku z czystą formą. |
3 | pure-form-aligned Reprezentuje wyrównany formularz z elementami wejściowymi poniżej etykiet. Do użytku z czystą formą. |
4 | pure-input-rounded Wyświetla kontrolkę formularza z zaokrąglonymi narożnikami |
5 | pure-button Upiększa przycisk. |
6 | pure-checkbox Upiększa pole wyboru. |
7 | pure-radio Upiększa radio. |
Przykład
purecss_forms.htm
<html>
<head>
<title>The PURE.CSS Forms</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "https://yui.yahooapis.com/pure/0.6.0/pure-min.css">
</head>
<body>
<form class = "pure-form pure-form-aligned">
<fieldset>
<div class = "pure-control-group">
<label for = "name">Username</label>
<input id = "name" type = "text" placeholder = "Username" required>
</div>
<div class = "pure-control-group">
<label for = "email">Email</label>
<input id = "email" type = "text" placeholder = "Email Address" required>
</div>
<div class = "pure-control-group">
<label for = "comments">Comments</label>
<input id = "comments" type="text" placeholder = "Comments">
</div>
<div class = "pure-controls">
<label for = "married" class = "pure-checkbox">
<input id = "married" type = "checkbox" checked = "checked">
Married
</label>
<br>
<label for = "single" class = "pure-checkbox">
<input id = "single" type = "checkbox">
Single
</label>
<br>
<label for = "dontknow" class = "pure-checkbox">
<input id = "dontknow" type = "checkbox" disabled>
Don't know (Disabled)
</label>
<br>
<br>
</div>
<div class = "pure-controls">
<label for = "male" class = "pure-radio">
<input id = "male" type = "radio" name = "gender" value = "male" checked>
Male
</label>
<br>
<label for = "female" class= "pure-radio">
<input id = "female" type = "radio" name = "gender" value = "female">
Female
</label>
<br>
<label for = "dontknow1" class = "pure-radio">
<input id = "dontknow1" type = "radio" name = "gender" value = "female" disabled>
Don't know (Disabled)
</label>
<button type = "submit" class = "pure-button pure-button-primary">Submit</button>
</div>
</fieldset>
</form>
</body>
</html>
Wynik
Sprawdź wynik.