Concerning my webpage:
<div class="loginpage-form">
...some content
<form>
<div class="flexwrapme">
<input type="text"... />
</div>
<input type="submit".../>
</form>
<!-- Do not style inputs from the form below -->
<form>
<input type="text"... />
</form>
</div>
This is a simple query, but I am unsure: How can I properly design only the input types "text" or "email" within the loginpage-form > flexwrapme containers?
I tried the following code, but I'm not totally convinced... :
.loginpage-form .flexwrapme input[type="text"],
.loginpage-form .flexwrapme input[type="email"] {
apply styles...
}
Is this code correct?
Cheers! Pat