CSS
input[type=text] {font-size:1.5em;}
HTML
<input type="text" placeholder="some text">
The CSS code makes 1.5em size for data, which is entered in the text box. But this code also changes size of placeholder text. How to prevent CSS from changing placeholder text's size? I want CSS to, only change size of original data, which entered by my website visitors.