Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> body { background-color: #eee; } input { border-top-style: hidden; border-right-style: hidden; border-left-style: hidden; border-bottom-style: groove; background-color: #eee; } .no-outline:focus { outline: none; } </style> </head> <body> <form> <p>Gewöhnliches Eingabefeld mit Boxenumrandung:</p> <input type="text" placeholder="Text eingeben"> <p>Eingabefeld ohne Umriss:</p> <input type="text" class="no-outline" placeholder="Text eingeben"> </form> </body> </html>