Home >Web Front-end >CSS Tutorial >How to Eliminate Outline Borders From Input Buttons in Browsers?
Styling Input Buttons to Eliminate Outline Borders
Certain browsers render an outline border around input buttons, which can affect the button's aesthetics and user experience. This issue arises when the button loses focus, leaving behind an unsightly border. To remove this border, the "outline" property can be employed.
In the provided code snippet, the CSS for the input button is defined without an outline property. To remove the border, add the following line:
outline: none;
Here's the updated CSS code:
input[type=button] { width: 120px; height: 60px; margin-left: 35px; display: block; background-color: gray; color: white; border: none; outline: none; }
This modified styling will eliminate the outline border from the input button in Chrome and other browsers that support the "outline" property.
By specifying "outline: none;", the browser is instructed to remove any border or glow around the button, regardless of its focus state. This ensures a clean and uniform appearance for the button throughout the user's interaction.
The above is the detailed content of How to Eliminate Outline Borders From Input Buttons in Browsers?. For more information, please follow other related articles on the PHP Chinese website!