sina pouladrag
sina pouladrag

Reputation: 27

Delete text style in input text

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

Answers (1)

Nelala_
Nelala_

Reputation: 341

You can apply inline css

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

Upvotes: 1

Related Questions