<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS Attribute Selector</title> <style> input[type="text"], input[type="password"] { width: 155px; display: purple; margin-bottom: 15px; background: orange; } input[type="submit"] { padding: 3px 13px; border: 1px solid red; background: yellow; } </style> </head> <body> <form> <label>Username: <input type="text"></label> <label>Password: <input type="password"></label> <input type="submit" value="Login"> </form> </body> </html>