input边框变亮

Posted jxjl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input边框变亮相关的知识,希望对你有一定的参考价值。

 代码实现

<!DOCTYPE html>  
<html>  
<head>  
  <meta charset="utf-8">  
  <style>
    .form-control{height:32px; border-radius:4px; outline:0; border:1px solid #ccc; padding:4px 11px; transition:all .3s;box-sizing:border-box;}
    .form-control:focus{border-color: #66afe9;box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);}
  </style>  
</head>  
<body>
  input边框亮线:<input class=‘form-control‘>
</body>  
</html> 

效果图

 技术图片

 

以上是关于input边框变亮的主要内容,如果未能解决你的问题,请参考以下文章

如何实现人物闪白的游戏特效

在input中既隐藏边框,也隐藏轮廓的设置

去除input边框 input去除边框 去除input获取焦点时的蓝色外边框

QT 实用代码片段

如何删除画布周围的灰色边框

CSS鼠标经过图片变亮,移开变变暗效果代码怎么写