xxxxxxxxxx
.from_Input{
border: none;
outline:none;
}
.from_Input:active{
border: none;
outline:none;
}
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<style>
input:focus {
outline: none;
}
</style>
</head>
<body>
<input type="text" placeholder="Click here to test" />
</body>
</html>