Answers for "input decoration css"

CSS
53

text-decoration css

h1 {
  text-decoration: overline;
}

h2 {
  text-decoration: line-through;
}

h3 {
  text-decoration: underline;
}

h4 {
  text-decoration: underline overline;
}
Posted by: Guest on February-20-2020
1

add border to input css

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

form css

#form {

    border: 1px solid black;
    padding: 1.5%;
    text-align: center;
    

}
Posted by: Guest on October-06-2020

Browse Popular Code Answers by Language