252
Views
3
Comments
Solved
Arrows in input
Question

I am getting arrows when the input type is number. How to remove this arrow ?



Capturefield.PNG
2021-04-09 11-42-43
assif_tiger
 
MVP
Solution

Tamil Mathi P wrote:

I am getting arrows when the input type is number. How to remove this arrow ?



Hi Tamil

Use this CSS: 

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}



UserImage.jpg
Tamil Mathi P

assif_tiger wrote:

Tamil Mathi P wrote:

I am getting arrows when the input type is number. How to remove this arrow ?



Hi Tamil

Use this CSS: 

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}



Thank you ...



2021-04-09 11-42-43
assif_tiger
 
MVP

Tamil Mathi P wrote:

assif_tiger wrote:

Tamil Mathi P wrote:

I am getting arrows when the input type is number. How to remove this arrow ?



Hi Tamil

Use this CSS: 

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}



Thank you ...



Great It Help's you.

Keep Going..

Cheers

Assif


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.