Why sm responsive utility in tailwindcss is showing the opposite output. I believed that using sm is to do something in small devices and smaller devices, however, the sm only applied in medium devices.
Any idea?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<h1 class="hidden md:block">
Your device is medium/large [hidden md:block].
</h1>
<p class="md:hidden">
Your device is small [md:hidden].
</p>
<h3 class="sm:block hidden">
Your device is small too [sm:block hidden].
</h3>
</body>
</html>