如何格式化文本区域中的占位符?

发布于 2025-01-01 14:50:24 字数 142 浏览 1 评论 0原文

如何使用 div 为旧版 ie 7 格式化 haml 中的文本? 你看我需要吸占位符文本: 在此处输入图像描述

这是一个 ,如何格式化并执行这样的占位符?

How can I format text in haml for old ie 7 using divs?
You see I need suck placeholder text:
enter image description here

it's an , how format and do such placeholder?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↘紸啶 2025-01-08 14:50:24

为了回答标题中的问题,旧浏览器不支持 HTML5 中建议的 placeholder 属性,而且,属性值(当显示给用户时)由不受影响的浏览器相关例程显示。 HTML 和 CSS 样式。但是,如果“占位符”表示 textarea 元素的初始值,那么它可以在 CSS 中正常设置样式,尽管有常见的 CSS 警告。例如,

textarea {
  font-family: Cambria, Georgia, serif;
  font-size: 100%;
}

To answer the question in the heading, the placeholder attribute as suggested in HTML5 is not supported by old browsers and, moreover, attribute values (when displayed to users) are shown by browser-dependent routines that are immune to HTML and CSS styling. But if “placeholder” means the initial value of a textarea element, then it can be styled normally in CSS, though with the usual CSS Caveats. E.g.,

textarea {
  font-family: Cambria, Georgia, serif;
  font-size: 100%;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文