发件人字段中的粗体文本:<输入>?

发布于 2024-10-22 02:32:32 字数 324 浏览 1 评论 0原文

今天,当我在谷歌填写日历时,我看到事件的描述是粗体的:

<input id=":g" name=":g" type="text" class="textinput" dir="ltr">

是否可以在文本输入字段中呈现自定义文本样式?


谢谢 阿曼.

编辑 简单搜索 我喜欢 jquery watermark 插件可以做类似的事情。

Today when I filled my calendar at google I saw that the description of the event is in bold font:

<input id=":g" name=":g" type="text" class="textinput" dir="ltr">

Is it possible to render the custom text style in the text input field?

Thanks
Arman.

EDIT
Simple search I fond that the jquery watermark plugin can do similar thing.

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

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

发布评论

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

评论(3

两仪 2024-10-29 02:32:32

CSS 可以格式化文本输入字段中的文本:

<html>
<head>
<style type="text/css">
   input {font-weight:bold;}
</style>
</head>
<body>
   <input type="text"/>
</body>
</html>

CSS can format text in text input field:

<html>
<head>
<style type="text/css">
   input {font-weight:bold;}
</style>
</head>
<body>
   <input type="text"/>
</body>
</html>
树深时见影 2024-10-29 02:32:32

试试这个,你不需要写CSS

 <input type="text" style="font-weight: bold;">

try this you don't need to write css

 <input type="text" style="font-weight: bold;">
蒗幽 2024-10-29 02:32:32

在 Bootstrap 5.0 中,您可以使用“fw-bold”

With Bootstrap 5.0 you can use "fw-bold"

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