h5 中修改input中 placeholder的颜色

input::-webkit-input-placeholder{
color:blue;
}
input::-moz-placeholder{ /* Mozilla Firefox 19+ */
color:blue;
}
input:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
color:blue;
}
input:-ms-input-placeholder{ /* Internet Explorer 10-11 */
color:blue;

}

原文地址:https://www.cnblogs.com/kgwei520blog/p/12298264.html

时间: 2024-10-10 06:08:35

h5 中修改input中 placeholder的颜色的相关文章

iOS利用storyboard修改UITextField的placeholder文字颜色

最近有个需求需要修改UITextField的placeholder文字颜色,在网上找发现有用代码修改的,但是考虑到更加优雅的实现,所以尝试着在storyboard中直接实现,结果竟然真的成功了(原谅我太小白),实现的位置如下: 具体步骤: 1.在User Defined Runtime Attributes中添加一个Key. 2.输入Key Path(这里我们输入_placeholderLabel.textColor). 3.选择Type,有很多种(这里我们选择Color) 4.设置Value(

iOS修改UITextField的Placeholder字体颜色

修改UITextField的Placeholder字体颜色有一下两张方式可以达到效果. 第一种: UIColor *color = [UIColor whiteColor]; textfield.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"用户名" attributes:@{NSForegroundColorAttributeName: color}]; 第二种: [textfield set

修改Input中Placeholder默认提示颜色(兼容)

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #f00; } input:-moz-placeholder, textarea:-moz-placeholder { color: #f00; } input::-moz-placeholder, textarea::-moz-placeholder { color: #f00; } input:-ms-input-placeholder

android-theme中修改actionmode中more下拉框的背景颜色

今天在做图库修改是,需要修改图库的actionbar某个按钮弹出来的下拉框的背景颜色,在网上找了个方法尝试下,没有打到自己的要求,不过阴差阳错的却修改了more下拉框的背景,再次记录下,也许以后能用的到. 代码 <style name="Theme.FunuiGallery" parent="android:Theme.Funui"> <item name="listPreferredItemHeightSmall">48

iOS中修改头部tabBarButton 默认按钮的颜色和默认字体颜色

+(void)initialize { //初始化设置主题 UINavigationBar *navBar = [UINavigationBar appearance]; [navBar setBackgroundImage:[UIImage imageNamed:@"NavBar64"] forBarMetrics:UIBarMetricsDefault]; //设置文字颜色 NSMutableDictionary *dict = [NSMutableDictionary dicti

VS中修改控件Panel边框颜色

//Panel是没有这样的属性的,双击进去输入下面代码就可以更换边框颜色了private void radPanel1_Paint(object sender, PaintEventArgs e) { Pen p = new Pen(Color.White); e.Graphics.DrawRectangle(p, 0, 0, this.radPanel1.Width - 1, this.radPanel1.Height - 1); }

Eclipse中修改字体的大小与颜色

如何用css给input的placeholder设置颜色

我在做页面的时候遇到过这种情况,在input标签中有默认字,但是设计稿上的颜色和input标签中的placeholder的默认颜色不一致.虽然我们可以在js中写出,但是有点过于麻烦了. 所以我就用css来给它设置了一下(注意css中有可能存在兼容性问题,如果实在不行还得用js.不过一般要求不严可以用这个偷偷懒). <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title&

Android 在frameworks中修改Setting中的默认值 (二)

修改设置->关于手机->法律信息 下有一些Item,如开放源代码许可.Google法律信息等,这里分析的是Android 4.4的代码 如下图所示,想添加"Google法律信息"选项 查看Settings的源码在/Settings/src/com/android/settings/DeviceInfoSettings.java文件初始化时有这样一段代码 @Override public void onCreate(Bundle icicle) { super.onCreat