bl00mber / react-phone-input-2

:telephone_receiver: Highly customizable phone input component with auto formatting

Home Page:https://bl00mber.github.io/react-phone-input-2.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to change the Label color while click input field

Kavin-Sunware opened this issue · comments

I tried this css:
.my-phone-input:focus + .special-label {
color: blue;
}

<div class="control-group">
    <label class="control-label" for="inputEmail">Firstname</label>
    <div class="controls">
        <input type="text" id="inputEmail" placeholder="Firstname">
    </div>
</div>
.control-group:has(input:focus) label{
 color: red;
}

You can check this post: On input focus change color of label. How?