gpt4 book ai didi

android - 有没有等同于android提示的css?

转载 作者:太空宇宙 更新时间:2023-11-03 13:00:28 25 4
gpt4 key购买 nike

在 Android 布局 xml 文件中,可以做这样的事情......

<EditText android:id="@+id/username"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/username" />
<EditText android:id="@+id/password"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:hint="@string/password" />

这会产生如下所示的 GUI:screenshot

如何使用 CSS 为 HTML 表单创建相同的效果?

最佳答案

您可以使用 placeholder HTML5 属性,例如:

<input type="text" name="username" placeholder="Username" />
<input type="text" name="password" placeholder="Password" />

除 Internet Explorer 外,大多数浏览器都兼容此功能(请参阅 jcater 的评论)。例如,您可以使用 jquery-placeholder添加对旧版浏览器(甚至 IE6!)的支持。

关于android - 有没有等同于android提示的css?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12362470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com