How can I remove the border around the form?
CodePudding user response:
You have to set the border to none in order to do this go to your css file and enter this code in the borders properties.
border:none;
Hope I could help you!
CodePudding user response:
You need to share your code too so people can identify the exact problem.
style="border:none;"
Add the above style in the div/form and it should do the trick.
CodePudding user response:
This is simple example how you can do it with using
style="border:0px;"
or
border:none;
<form>
<p>Ordinary input field with box outline:</p>
<input type="text" placeholder="Enter Something">
<p>Input field without outline:</p>
<input style="border:0px;" type="text" placeholder="Enter Something">
</form>