focus um elemento altera outro css

Solutions on MaxInterview for focus um elemento altera outro css by the best coders in the world

showing results for - "focus um elemento altera outro css"
Jesús
04 Jan 2019
1label {
2    display: block;
3    padding: 20px;
4}
5
6.grupo-input span {
7    transition: margin-top .5s;
8    margin-top: 0px;
9    display: block;
10}
11
12.grupo-input input:hover + span {
13    margin-top: -40px;
14}