Home › Forums › CSS › [Solved] Input buttons incorrectly taking on CSS where none defined › Reply To: [Solved] Input buttons incorrectly taking on CSS where none defined
January 10, 2014 at 1:14 pm
#160084
Participant
/* form element visual styles */
.enrollform input,
.enrollform textarea,
.enrollform select {
border:1px solid #707070; /* <<---- .enrollform input */
}
.enrollform input:focus,
.enrollform textarea:focus,
.enrollform select:focus {
background: #fff; /* <<---- */
border:1px solid #555; /* <<---- */
}