<!DOCTYPE html><!--h5写法 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
input{
width:150px;
height:18px;
outline-style:none;/*取消蓝色边框*/
}
.username{
border:1px dashed #ccc;
background-color:#E7EEFE;
}
.username:focus{/*获取焦点*/
border:1px dashed pink;
background-color:#FFF7FE;
}
.email{
border:0 none;/*取消表单边框*/
}
.search{width:10px;}
</style>
</head>
<body>
用户名:<input type="text" class="username"/><br/>
邮 箱:<input type="text" class="email"/><br/>
<label for="txt"><input type="radio" class="search" id="txt" value="请输入…"/>
搜索</label><!--label for id 获取标签-->
</body>
</html>
label for id
最新推荐文章于 2024-09-29 15:20:35 发布