html - CSS for input[type="submit"] -
before start crying, please explain why none of attempted css soltions styling submit button have effect @ all? i've gone font-size: 50px
make obvious if hit right element, haven't yet:
input[type="submit"].wysija-submit { border-radius: 10px; border: none; box-shadow: none; font-family: inherit; font-size: 50px!important; } .wysija-submit input[type="submit"] { border-radius: 10px; border: none; box-shadow: none; font-family: inherit; font-size: 50px!important; } .wysija-submit.wysija-submit-field input[type="submit"] { border-radius: 10px; border: none; box-shadow: none; font-family: inherit; font-size: 50px!important; }
<input class="wysija-submit wysija-submit-field" type="submit" value="sign-up">
this 1 does work.
input[type="submit"].wysija-submit { border-radius: 10px; border: none; box-shadow: none; font-family: inherit; font-size: 50px!important; }
<input class="wysija-submit wysija-submit-field" type="submit" value="sign-up">
.wysija-submit input[type="submit"]
, .wysija-submit.wysija-submit-field input[type="submit"]
contain descendant combinators won't match because left hand side matches input, right hand side matches nothing because inputs can't have descendants.
Comments
Post a Comment