Answers for "add a border to a textfield in css"

CSS
1

add border to input css

border: none;
border-bottom: 1px solid blue;
Posted by: Guest on March-11-2020
0

text box border css

<style>
  span{
  border:solid;
  }
</style>

<span>My text</span>
Posted by: Guest on May-28-2021

Code answers related to "add a border to a textfield in css"

Browse Popular Code Answers by Language