<!DOCTYPE html>
<html>
<head>
<title>Der Titel des Dokuments</title>
<style>
input,textarea{
padding:5px;
}
span{
display:block;
padding:15px 0 3px;
}
input:focus, textarea:focus, select:focus {
outline: none;
}
</style>
</head>
<body>
<h3>Removed Input Highlighting for input, textarea and select form fields</h3>
<form>
<span>Ein Eingabefeld:</span>
<input type="text">
<span>Ein Eingabefeld:</span>
<textarea></textarea>
<span>Ein Auswahlfeld:</span>
<select>
<option>Wählen</option>
<option>Wählen</option>
</select>
</form>
</body>
</html>