I’m making a form, but I want the input field borders invisible. Is this possible? I’ve tried <input type="text" style="display:none"> but that doesn’t do anything. It just makes the whole input invisible and not input-able (?).
>Solution :
you your css file/codes just put the below line for achieve that objective
input { outline : none }