outline: none; // 也可以把none设置为其他的颜色,选中时的外边框颜色
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
input{
outline: none;
}
</style>
</head>
<body>
<input type="text" />
</body>
</html>
outline: none; // 也可以把none设置为其他的颜色,选中时的外边框颜色
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
input{
outline: none;
}
</style>
</head>
<body>
<input type="text" />
</body>
</html>