How can I apply the style below to a type="submit" at the same time? Without duplicating the entire block?
input[type="button"] {
width: 120px;
margin-left: 35px;
display: block;
}
using a comma(,) just like this:
input[type="button"], input[type="submit"] {
width: 120px;
margin-left: 35px;
display: block;
}
check more info here