0
When do I use border hidden and when do i have to use borde none?
2 Respuestas
+ 2
There are no different
https://code.sololearn.com/WN9nf3Wj6kI1/?ref=app
0
I am not sure about my answer, but you can use border hidden when you want, for example, to make a button without 90 degrees corners.
Try this code, and then remove "hidden" and instead, put "solid" you will see the difference
<!DOCTYPE html>
<html>
<head>
<style>
body {
text-align:center;
}
button {
border:2px hidden;
border-radius:30px;
}
</style>
<title>Page Title</title>
</head>
<body>
<button>Test</button>
</body>
</html>