微信小程序 input 输入框 怎么样写css代码 来改变 placeholder 提示文字的样式 和 里面的文本居中
时间: 2024-03-22 22:42:01 浏览: 154
placeholder,输入框提示
改变 placeholder 提示文字的样式,可以使用 `::placeholder` 伪元素来设置。例如,设置 placeholder 文字的颜色和字体大小可以这样写:
```css
input::placeholder {
color: #999;
font-size: 14px;
}
```
居中文本可以使用 `text-align: center;` 属性来设置。例如:
```css
input {
text-align: center;
}
```
如果同时想要居中文本和改变 placeholder 样式,可以这样写:
```css
input {
text-align: center;
}
input::placeholder {
color: #999;
font-size: 14px;
text-align: center;
}
```
阅读全文