css实现一下点击input输入框后提示文字上移并缩小,这种表单美化挺常见的,效果如图:
代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport"content="width=device-width, initial-scale=1">
<title></title>
<style>
.box{
width: 500px;
position: relative;
margin-top: 50px;
}
.box input{
outline: none;
border: none;
width: 100%;
padding: 10px 0;
color: #000;
font-size: 16px;
border-bottom: 1px solid red;
background: none;
}
.box label{
position: absolute;
top: 0;
left: 0;
color: #000;
font-size: 16px;
pointer-events: none;
transition: all 0.5s;
line-height: 38px;
}
.box input:focus + label,
.box input:valid + label{
font-size: 12px;
top: -20px;
color: red;
}
</style>
</head>
<body>
<div class="box">
<input type=""name=""id=""value=""required="required"/>
<label>name</label>
</div>
</body>
</html>
原创文章,作者:ciding,如若转载,请注明出处:https://blog.ciding.cc/cssfloat.html,侵权请联系删除,谢谢
评论列表(1条)
核桃在线预览点击预览后会提示维护中,然后点击返回首页后,左上角会有两个方框导航(本来只有一个),刷新后恢复正常。这算是一个小bug吗?