What code can I used to put a think border around all input fields, and

  • Dean Pitout
    Asked on July 7, 2019 at 6:02 AM

    What code can I used to put a think border around all input fields, and use the HEX color code to make the border a specific color?

  • Victoria_K
    Replied on July 7, 2019 at 6:37 AM

    Hi,

    You can use the following code:

    input[type='text'] {

      border: 3px solid #fffccc;

    }

    '3px' value can be changed to adjust border thickness and '#fffccc' is for color.

    Please let us know if you need more help.