+ 4
What is the effect of this CSS attribute?
outline: none;
5 Antworten
+ 3
<!DOCTYPE html>
<html>
<head>
<title>example</title>
<style>
input{
border:solid #00ffff;
border-radius:32px;
Outline:none;
}
</style>
</head>
<body>
<input type="text">
</body>
</html>
Remove outline none then you understand properly
Don't forgot to click on input then you understand what's the use of outline none
+ 3
<!DOCTYPE html>
<html>
<head>
<title>example</title>
<style>
input{
border:solid #00ffff;
border-radius:32px;
}
</style>
</head>
<body>
<input type="text">
</body>
</html>
Without outline none run this code
You can easily understand man
Don't forgot to click on input then you understand what's the use of outline none
+ 3
Thanks a lot bro 👊👊👊
Now I understand
+ 2
@Kay so what does it do???
I am not getting it
+ 2
It removes the highlight effect of your container