Home  >  Article  >  Web Front-end  >  How to remove input border in css

How to remove input border in css

藏色散人
藏色散人Original
2021-04-02 13:52:324222browse

How to remove the input border in css: 1. Remove the input border by directly adding "style="outline:none;"" to the input; 2. Directly control the css style to "input{ in the top style outline:none;}" is enough.

How to remove input border in css

The operating environment of this article: Windows7 system, HTML5&&CSS3 version, DELL G3 computer

The specific steps to remove the input border are as follows:

1. Enter the input related code in the html page.

<div class="form"><input id="code" class="ipx code" name="code" placeholder="请点击按钮领取礼包" type="text"><input type="button" class="send" value="发送"></div>。

How to remove input border in css

#2. Open the browser, click the input and a blue border will appear.

How to remove input border in css

3. Add style="outline:none;" directly to the input.

How to remove input border in css

4. Directly control the css style in the top style: .

How to remove input border in css

5. Directly use input:focus { outline: none; } to control the focus to remove the blue border.

How to remove input border in css

Recommended study: "css video tutorial"

The above is the detailed content of How to remove input border in css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn