placeholder=" Write YourComment Here" 想让这个提示语靠广本框上端,怎么办?
6 回答
码农2号
TA贡献151条经验 获得超48个赞
给input::webkit-input-placeholder{设置属性}
::-moz-placeholder{兼容火狐firefox19+}
:-moz-placeholder{兼容火狐firefox18以下}
:-ms-input-placeholder{兼容ie10以上}
2.使用其他方法:
透明的input下面放个span,内容写placeholder内容,input获取焦点时候,span隐藏或其内容影藏。
什么鬼_呀你
TA贡献46条经验 获得超35个赞
<!DOCTYPE html>
<html>
<body>
<input type="text" placeholder="文字靠上" style="padding-bottom:100px;padding-left:300px;font-size:30px;"/>
</body>
</html>
- 6 回答
- 1 关注
- 3262 浏览
添加回答
举报
0/150
提交
取消