【发布时间】:2016-04-04 10:51:53
【问题描述】:
我想获得输入顶部的标签。但是当我在代码中向上移动它时,CSS 焦点样式停止工作。专注于标签需求变得更大。如何解决这个问题?什么都试过了……
form {
margin-top: 25px;
}
input {
display:block;
}
form input:focus + label {
font-size: 1.5em;
}
<form>
<!-- DOESN'T WORK
=====================
-->
<label for="firstname">First name:</label>
<input id="firstname" name="firstname" type="text">
<br>
<!-- WORKS
=====================
-->
<input id="lasttname" name="firstname" type="text">
<label for="lasttname">Last name:</label>
</form>
【问题讨论】:
标签: html css forms animation label