css去掉input边框的方法:1、通过直接在input中加“style=“outline:none;””来去掉input边框;2、在顶部style中直接控制css样式为“input{outline:none;}”即可。

本文操作环境:Windows7系统、HTML5&&CSS3版,DELL G3电脑

去掉input边框的具体操作步骤如下:

1、在html页面中输入input的相关代码。

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

fa0d4a123377df61aec2cf0c1303c12.png

2、打开浏览器,出现点击input出现了蓝色边框。

557cf84e16ba16bf107ed76f189b92a.png

3、直接在input中加style=“outline:none;”。

95afdfebb355b837421adabba107a80.png

4、在顶部style中直接控制css样式:<style type="text/css"> input{outline:none;}</style>。

067c714ee72b8e44eac21e66b5420d9.png

5、直接用 input:focus { outline: none; } 控制聚焦即可去掉蓝色边框。

e4aa45a05914de5813a4da102ee59ed.png

以上就是css怎么去掉input边框的详细内容,转载自php中文网

点赞(880) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部