You can't use CSS to disable autocomplete, but you can use HTML:
<input type="text" autocomplete="false" />
Technically you can replace false
with any invalid value and it'll work. This iOS the only solution I've found which also works in Edge.