我想介绍一下html5的placeholder的特殊属性,使得placeholder的文字可以显示在填充框内部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>新内容</title>
</head>
<body>
<p > <input type="text" value="" placeholder="请输入你的用户名"></p>
<p><input type="text" value="" placeholder="请输入你的密码,速度好慢"></p>
<p><input type="password" value=""></p>
</body>
</html>