标签: javascript html css
我在搜索框输入中使用占位符元素:
<input id="searchBarTextbox" type="search" class="k-textbox" placeholder="Search For..." />
但是,我希望占位符文字更加大胆,看起来像是在文本框中写下的实际文字。
关于JSFiddle的更多细节: http://jsfiddle.net/RYBrk/1/
答案 0 :(得分:0)
css,font-weight:bold;
::-webkit-input-placeholder { color: black; font-weight:bold; }
jsfiddle here