But instead of using
- Code: Select all
input.text {
cursor:text;
}
Wouldn’t it be better to use...
- Code: Select all
input, textarea {
cursor:text;
}
That way, there would be no reason to specify class="text" on every input and textarea field.
input.text {
cursor:text;
}input, textarea {
cursor:text;
}