Join WhatsApp ChannelJoin Now

Always show Arrows Input Number

Hello Dev,

Today, i we will show you always show arrows input number. This article will give you simple example of always show arrows input number. you will learn always show arrows input number. So let’s follow few step to create example of always show arrows input number.

Always show Arrows Input Number

Example

<!DOCTYPE html>
<html>
<head>
<title>Always show Arrows Input Number</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  
   opacity: 1;
}
</style>
</head>
<body>

<h2>Always show Arrows Input Number</h2>
<input type="number" value="5">

</body>
</html>

Recommended Posts