Reputation: 27
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!
Upvotes: 0
Views: 113
Reputation: 341
You can apply inline css
<input style="text-decoration:line-through;" type="text" value=">Hello World!" />
Upvotes: 1