欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

如何修改placeholder樣式

錢浩然2年前75瀏覽0評論

如何修改placeholder樣式?

修改palceholder內文字的css樣式

1 ::-webkit-input-placeholder{

2 color: red;

3 font-size: 20px;

4 line-height: 50px;

5 }

修改class名為test1的元素palceholder內文字css樣式

.test1::-webkit-input-placeholder{

color: red;

font-size: 20px;

line-height: 50px;

}

比如:

<!DOCtype html>

<html>

<head>

<meta charset="UTF-8">

<title></title>

<style>

input{

height: 50px;

font-size: 14px;

line-height: 50px;

}

.test1::-webkit-input-placeholder{

color: red;

font-size: 20px;

line-height: 50px;

}

</style>

</head>

<body>

<input class="test1" type="text" placeholder="測試" />

<input type="text" placeholder="測試" />

</body>

</html>