实现“时尚”的一个很好的例子大输入文本框?
A good example of implementing 'fashionable' large input text boxes like those found on google and tumblr?
On tumblr how do they use manage to get the input to flow backwards from where the cursor is in the box - on the final input box for URL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 CSS:
您可以使用 Firebug 查看 Tumblr 的 CSS。
You can use CSS:
You can see Tumblr's CSS using Firebug.
是的,只要这样做:
它会让输入元素“更胖”。
Yes, just do like this:
and it will make the input elements "fatter".
正如 SLaks 所建议的,您可以使用 CSS 来控制输入文本框的外观。例如,您可以使用 firebug 来发现 tumblr 使用的 CSS 如下所示:
这些是活动样式(分布在多个不同的规则中)。另外,评论是我的。
尝试设置 font-size 属性以使输入区域“胖”
尝试设置 text-align:right 属性以使输入“向右流动”,如 URL 字段中一样。
As SLaks suggested, you can use CSS to control the appearance of the input text boxes. For example, you could use firebug to discover that the CSS tumblr uses looks like this:
These are the active styles (which are spread across several different rules). Additionally, the comments are mine.
Try setting the font-size property to make the input area "fat"
Try setting the text-align:right property to make the input "flow to the right" as in the URL field.