نحوه ی استایل دهی به placeholder ها همون طور که استاد گفتن مثل سودوالمنت هاست دقیقا
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Placeholder Style</title>
</head>
<body>
<form action="" class="login">
<input type="text" class="username" placeholder="نام کاربری ...">
<input type="text" class="password" placeholder="رمز عبور ...">
<div class="wrapper">
<button type="submit">ارسال</button>
</div>
</form>
</body>
</html>
css
البته استایل زیاد زیبا و خاص فکر نمیکنم بشه بهش داد و به همون بکگراند کالر و استایلهای فونت بسنده کردم
@font-face{
font-family: sahel;
src: url("Sahel.woff") format("woff");
}
body,*{
font-family: sahel;
direction: rtl;
background-color: #f6f9fb;
box-sizing: border-box;
}
.login{
width: 300px;
height: auto;
margin: 50px auto;
padding: 10px;
border-radius: 15px;
box-shadow: 1px 1px 5px black;
}
.login input{
width: 100%;
background-color: #efefef;
display: block;
margin-bottom: 15px;
border: none;
height: 30px;
padding: 10px;
}
.login button{
border-radius: 2px;
background-color: green;
color: white;
border: none;
padding: 5px 10px;
box-shadow: 1px 1px 4px black;
}
.login input:focus{
outline: 2px solid green;
}
.login input[class |= "username"]::placeholder{
font-weight: 700;
text-shadow: 1px 1px 8px green;
font-style: italic;
text-align: center;
}
.login input[class |= "password"]::placeholder{
font-weight: 700;
text-shadow: 1px 1px 8px blueviolet;
font-style: italic;
text-align: center;
}
.login .wrapper{
text-align: center;
}