这篇文章主要介绍“vant怎么修改placeholder样式”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“vant怎么修改placeholder样式”文章能帮助大家解决问题。
如何修改placeholder样式
::-webkit-input-placeholder { color: #ffffff; font-weight: 400;}:-moz-placeholder { color: #ffffff; font-weight: 400;}::-moz-placeholder { color: #ffffff; font-weight: 400;}:-ms-input-placeholder { color: #ffffff !important; font-weight: 400 !important;}::-ms-input-placeholder { color: #ffffff; font-weight: 400;}::placeholder { color: #ffffff; font-weight: 400;}
设置placeholder属性样式的多种写法
我们经常用到placeholder属性是在input标签里面,placeholder属性主要作用是让输入框有个提示的显示。
那当我们想要改变placeholder属性中文字的大小颜色等样式时,又如何设置呢?
我们先来看一下正常的placeholder属性样式:
<input type="text" placeholder="正常的样式">
效果图:
上面的样式就是placeholder属性默认的样式,如果我们想要突出字体,是不是想把字体颜色改变一下,接下来我们试一下把字体颜色改为红色,先想一下该如何设置呢?
效果图:
代码:
第一种最简单的写法
在谷歌浏览器中使用
<!doctype html><html><head><meta charset="utf-8"><title>设置placeholder属性样式的多种写法</title></head><style>input::placeholder{color:#DD5A5D;} </style><body><input type="text" placeholder="字体颜色为红色"></body></html>
第二种写法
注:因为不同浏览器的兼容性不同,所以在写代码方面也会有所差别。
input::-webkit-input-placeholder{ color: #E0484B;}input:-moz-placeholder{ color: #E0484B;} input::-moz-placeholder{ color: #E0484B;} input:-ms-input-placeholder{ color: #E0484B;}
注: 冒号前可写相对应的input或textarea元素等,也可以省略不写,直接冒号开头。
第三种写法
有种写法虽然是复杂了点,但还是要介绍一下。
input[type='text']::-webkit-input-placeholder{ color: #E97F81;}input[type='text']:-moz-placeholder{ color: #E0484B;} input[type='text']::-moz-placeholder{ color: #E0484B;} input[type='text']:-ms-input-placeholder{ color: #E0484B;}
注:第三种写法中的text是相对应html中的text,如果是密码框,那么相对应的就是password。
例如:
html:
<input type="password" placeholder="字体颜色为红色">
css:
input[type='password']::-webkit-input-placeholder{ color: #E97F81;}
关于“vant怎么修改placeholder样式”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。