How to Remove the Borders on Input Fields

104 7
    • 1). Scroll to the BODY tag in your HTML file.

    • 2). Find the INPUT tag with the border you want to remove, such as:

      <form>

      Name <input type="text" name="Name" />

      <input type="submit" value="Submit" />

      </form>

    • 3). Add -- style="border:none;" -- to the INPUT tag as follows:

      <input type="text" name="Name" style="border:none;" />

Source...
Subscribe to our newsletter
Sign up here to get the latest news, updates and special offers delivered directly to your inbox.
You can unsubscribe at any time

Leave A Reply

Your email address will not be published.