function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SFDC 1993SFDC 1993 

NOT TO DISPLAY THE INCREASE AND DECREASE BAR IN INPUT FIELD

Best Answer chosen by SFDC 1993
jane1234jane1234
just use this script inside your apex page
<style>
        input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
    </style>