Change default text to input multiple items on ios

I would like to change the text of "n elements" displayed by iOS for several selection inputs, for example, such as "n shirts".

I'm not sure if this is currently possible, but I would like to know in any case.

+7
html css ios
source share
2 answers

I assume that you are talking about showing different things on a website if the user is on an iOS device compared to a computer? You can always make a multimedia request to find out the size of the device, and then display the different inputs by setting the display property to none.

0
source share

I assume that you want to change the dropdown menu label for the form. This can be easily done using the <label> tag immediately before the <select> . An example is as follows:

 <form> <label>n Shirt types</label> <select> <option>1</option> <option>2</option> </select> </form> 
0
source share

All Articles