How can I format the text of a placeholder in italics, but when someone writes inside the textbox, the text shouldn't be in italics.
code:
<input type="text" id="search" placeholder="Search" style="font-style:italic">
How can I place italic text only on placeholder but not whole input?
::-webkit-input-placeholder, ::-moz-placeholder { font-style: italic; }
doesn't work. – Pelagia