文本字段中的静态文本?

发布于 2024-08-13 13:50:25 字数 190 浏览 5 评论 0原文

我如何在 文本字段中保留静态文本,就像这里的 tumblr 帐户 ***.tumblr.com > http://www.tumblr.com/

How can i keep static text within a <input type="text" name="site"> text field, just like the tumblr account ***.tumblr.com here > http://www.tumblr.com/

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

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

发布评论

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

评论(1

Oo萌小芽oO 2024-08-20 13:50:25

.tumblr 文本与输入标签是分开的。

<div class="inputBox">
    <input class="hideInput" type="text" name="site" />
    .tumblr.com
</div>

因此类 hideInput 样式会将边框宽度设置为 0 以隐藏它们以及填充。例如

border-bottom-width:0;

,类 inputBox 样式将重新实现输入框样式,因此它会有边框、填充等。

The .tumblr text is separate from the input tag.

<div class="inputBox">
    <input class="hideInput" type="text" name="site" />
    .tumblr.com
</div>

So the class hideInput style would set the border widths to 0 to hide them as well as the padding. E.g.

border-bottom-width:0;

Where as the class inputBox style would re-implement the input box style, so it would have a border, padding etc.

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