Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Disable number box spinners?

  • 2 답장
  • 1 이 문제를 만남
  • 6 보기
  • 최종 답변자: ZombieToast

more options

Since updating to Firefox 38.0.5, number fields now have spinners (up and down arrows) on the right side. This can actually be fairly handy on a few sites, but for most other sites, it is proving to be a nuisance, especially because autocomplete is now disabled for these fields. Is there some way I can either disable these spinners or at least make it so they no longer interfere with autocomplete? It would be ideal if I could have a whitelist of sorts to allow spinners on specific sites, but disabling them completely is fine as well.

Since updating to Firefox 38.0.5, number fields now have spinners (up and down arrows) on the right side. This can actually be fairly handy on a few sites, but for most other sites, it is proving to be a nuisance, especially because autocomplete is now disabled for these fields. Is there some way I can either disable these spinners or at least make it so they no longer interfere with autocomplete? It would be ideal if I could have a whitelist of sorts to allow spinners on specific sites, but disabling them completely is fine as well.

모든 댓글 (2)

more options
  • bug 947728 - Provide a way for content to hide <input type=number>'s spinner

Make |-moz-appearance:number-input| the UA style sheet default for <input type=number>, and make the value 'textfield' hide the spinner.


Add code to the userContent.css file.


input[type="number"] { -moz-appearance:textfield !important; }

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

You can use this button to go to the current Firefox profile folder:

  • Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
  • Use a plain text editor like Notepad to create a (new) userContent.css file in the chrome folder (file name is case sensitive)
  • Paste the code in the userContent.css file in the editor window
  • Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userContent.css.
    Otherwise Windows may add a hidden .txt file extension and you end up with a not working userContent.css.txt file
more options

Thank you for the quick response! This works perfectly for disabling the spinners, but it unfortunately doesn't re-enable autocomplete for number fields like I hoped it would. Is there a way to accomplish this as well? I take a lot of surveys and autocomplete saves me the hassle of having to enter my zip code, age, etc. every time.