Currently, I am facing an issue with my web application where a select list is dynamically generated using javascript. The options in the select list are taken from an existing menu list within the DOM.
Upon testing on iOS devices, I discovered that CSS styles specifically targeting select lists are being ignored. For instance, I have a media query set at max-width:768 to hide a particular item within the select list when viewed on screens 768px and lower.
Despite working correctly in device emulation tools like quirktools/screenfly, the display:none property is not being applied when the select list is viewed on an actual iOS device.
Does anyone have any recommended workarounds for this issue?