一. input输入框中value属性
通常,我们在做登录界面的时候,会有数入用户名和密码的输入框,而且我们为了用户的体验感会给数入框中设置默认的提示语,提示用户数入用户名和密码,当输入框聚焦时提示语消失,当输入框为空时提示语出现
聚焦效果如下:
1.1 使用placeholder属性实现(方式一)
<!DOCTYPE html> <!--声明为html5文档 -->
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<style>
a {
color: blue;}
a:link {
color: green; text-decoration:none;}
/* a:visited {color:green;text-decoration:none;} */
a:hover {
color: red; text-decoration:underline;}
a:active {
color:#f1f1f1; text-decoration:none;}
span {
height: 30