Jest rok 2019 i poprzednie odpowiedzi na ten problem nie są używane
- Siatka CSS
- Zmienne CSS
- Elementy formularza HTML5
- SVG w CSS
Siatka CSS to sposób na tworzenie formularzy w 2019 r., Ponieważ możesz mieć etykiety poprzedzające dane wejściowe bez dodatkowych elementów div, span, span z gwiazdkami i innych reliktów.
Oto, dokąd zmierzamy przy minimalnym CSS:
HTML dla powyższego:
<form action="https://www.example.com/register/" method="post" id="form-validate" enctype="multipart/form-data">
<p class="form-instructions">Please enter the following information to create your account.</p>
<label for="firstname">First name</label>
<input type="text" id="firstname" name="firstname" value="" title="First name" maxlength="255" required="">
<label for="lastname">Last name</label>
<input type="text" id="lastname" name="lastname" value="" title="Last name" maxlength="255" required="">
<label for="email_address">Email address</label>
<input type="email" autocapitalize="off" autocorrect="off" spellcheck="false" name="email" id="email_address" value="" title="Email address" size="30" required="">
<label for="password">Password</label>
<input type="password" name="password" id="password" title="Password" required="">
<label for="confirmation">Confirm password</label>
<input type="password" name="confirmation" title="Confirm password" id="confirmation" required="">
<input type="checkbox" name="is_subscribed" title="Subscribe to our newsletter" value="1" id="is_subscribed" class="checkbox">
<label for="is_subscribed">Subscribe to the newsletter</label>
<input type="checkbox" name="persistent_remember_me" id="remember_meGCJiRe0GbJ" checked="checked" title="Remember me">
<label for="remember_meGCJiRe0GbJ">Remember me</label>
<p class="required">* Required</p>
<button type="submit" title="Register">Register</button>
</form>
Można również dodać tekst zastępczy i jest to wysoce zalecane. (Odpowiadam tylko na ten środkowy formularz).
Teraz dla zmiennych CSS:
--icon-required: url('data:image/svg+xml,\
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-10 -6 16 16"> \
<line id="line" y1="-3" y2="3" stroke="%23df0000" stroke-linecap="butt" transform="rotate(15)"></line> \
<line id="line" y1="-3" y2="3" stroke="%23df0000" stroke-linecap="butt" transform="rotate(75)"></line> \
<line id="line" y1="-3" y2="3" stroke="%23df0000" stroke-linecap="butt" transform="rotate(-45)"></line> \
</svg>');
--icon-tick: url('data:image/svg+xml,\
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100" height="100" viewBox="-2 -2 16 16"> \
<path fill="green" stroke-linejoin="round" d="M2 6L1 7l3 4 7-10h-1L4 8z"/> \
</svg>');
CSS dla elementów formularza:
input[type=text][required],
input[type=email][required],
input[type=password][required],
input[type=tel][required] {
background-image: var(--icon-required);
background-position-x: right;
background-repeat: no-repeat;
background-size: contain;
}
input:valid {
--icon-required: var(--icon-tick);
}
Sam formularz powinien znajdować się w siatce CSS:
form {
align-items: center;
display: grid;
grid-gap: var(--form-grid-gap);
grid-template-columns: var(--form-grid-template-columns);
margin: auto;
}
Wartości kolumn można ustawić na dowolne 1fr auto
lub 1fr
dowolne, takie jak <p>
tagi w formularzu ustawionym na zakres 1 / -1. Zmieniasz zmienne w zapytaniach o media, aby pola wejściowe miały pełną szerokość na urządzeniach mobilnych i jak powyżej na komputerze. Jeśli chcesz, możesz również zmienić swoją lukę w siatce na telefonie komórkowym, korzystając z metody zmiennych CSS.
Gdy pola są ważne, zamiast gwiazdki powinien pojawić się zielony znacznik.
SVG w CSS to sposób na uratowanie przeglądarki przed podróżą do serwera w celu uzyskania obrazu gwiazdki. W ten sposób możesz precyzyjnie dostroić gwiazdki, przykłady tutaj są pod nietypowym kątem, możesz to edytować, ponieważ ikona SVG powyżej jest w pełni czytelna. Pole widoku można również zmienić, aby umieścić gwiazdkę powyżej lub poniżej środka.