Quotes in type selectors

by Marventus

HTML

<div class="quotes">
    <input type="button" value="Quotes" />
    <br/>
    <input type="text" value="Quotes" />
</div>
<div class="no-quotes"><br/>
    <input type="button" value="No quotes" />
    <br/>
    <input type="text" value="No quotes" />
</div>

CSS

div {
    margin-bottom: 30px;
}
.quotes input[type="button"], .quotes input[type="text"] {
    background-color: #EEE;
    border: 2px solid #2CAE85;
}
.no-quotes input[type=button], .no-quotes input[type=text] {
    background-color: #EEE;
    border: 2px solid #2CAE85;
}