Home > OS >  Delete text style in input text
Delete text style in input text

Time:08-13

Hey how i can change input text style to delete style?

<input type="text" value=">Hello World!" />

i want change my input text style like this Hello World!

CodePudding user response:

You can apply inline css

<input style="text-decoration:line-through;" type="text" value=">Hello World!" />
  • Related