How to change color of label text when focus on input ? Without using Javascript. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How to change color of label text when focus on input ? Without using Javascript.

When click in the text input tag then the color also gets change of label. Using html and css only

31st Mar 2022, 10:44 AM
Rahul
Rahul - avatar
3 Answers
+ 2
/*css*/ .input1:focus .label1 { color: 'blue'; /*set your color here*/ } /* be sure to add this to change the text to it's original color after focus is out */ .input1:blur .label1 { color: 'black'; }
31st Mar 2022, 10:49 AM
Jossycodes
Jossycodes - avatar
+ 2
Normally styling of label comes before input tag eg. label: input Use display: flex and row/column-reserve to help in positioning https://code.sololearn.com/W16Ur6im49l2/?ref=app Your modified code https://code.sololearn.com/WTYqWQPZxLir/?ref=app
31st Mar 2022, 12:20 PM
Calviղ
Calviղ - avatar
0
Good work 👏
31st Mar 2022, 2:21 PM
Rahul
Rahul - avatar