Wie Entferne ich alle CSS-Stile für ein element ohne Klasse oder ID?

Ich habe 5 buttons ohne jede Klasse oder ID. Hier ist mein code:

HTML

<button>Btn1</button>
<button>Btn2</button>
<button>Btn3</button> <!-- I don't want this elem to get the CSS styles -->
<button>Btn4</button>
<button>Btn5</button>

CSS

button {
    width: 100px;
    height: 45px;
    background-color: #12aeef;
    border: none;
    box-shadow: 0px 5px 3px #888888;
}

Demo auf jsFiddle.

Wie kann ich das 3. element nicht die CSS-Stile?

InformationsquelleAutor Hamed Kamrava | 2013-07-05

Schreibe einen Kommentar