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!" />