On input focus change color of label. How?

前端 未结 5 1711
终归单人心
终归单人心 2020-12-20 14:19

On input focus I want to change the color of the label element. How can I achieve this in less?

.control-label{
      color: @gray-light;
}
.co         


        
相关标签:
5条回答
  • 2020-12-20 14:55

    The easy way is to use :focus-within check developer mozilla

    .control-group:focus-within .control-label {
       color: red;
    }
    

    Or

    .control-group:focus-within label {
       color: red;
    }
    
    0 讨论(0)
  • 2020-12-20 15:01

    I don't think you can without changing your HTML, see also: Is there any way to hover over one element and affect a different element?, your elements should be direct siblings. (LESS don't help to solve your problem here, LESS generate CSS and it seems impossible to do in CSS)

    Possible suggestion:

    input:focus + .control-label
    {
        background-color:purple;
        color: red;
    }
    .controls > input
    {
        float:right;
    }	
    <div class="controls">
        <input type="text" id="inputEmail" placeholder="Firstname">
        <label class="control-label" for="inputEmail">Firstname</label>
    </div>

    Or solve your problem with javascript: https://stackoverflow.com/a/20226218/1596547

    0 讨论(0)
  • 2020-12-20 15:03

    One solution would be to move the label below the input in the DOM but position them absolutely (to the parent) so the label looks to be above the input field:

    <div>
      <input type="text"/>
      <label>Text</label>
    </div>
    

    In CSS move the label to the top, the input to the bottom:

    label {
      position: absolute
      top: 0
    }
    
    input {
      position: absolute
      bottom: 0
    }
    

    And use the :focus state to change the style of the label:

    input:focus + label {
        color: red
    }
    

    See example:

    http://codepen.io/robcampo/pen/zGKLgg

    On focus, the label turns red. No JS required.

    0 讨论(0)
  • 2020-12-20 15:03

    Use Flexbox

    CSS is cascading, i.e. affected by the order that elements appear in the DOM. To be able to select the label only when the input is focused (input:focus + label), the label needs to come after the input, so;

    Put the input before the label in the DOM and then use flexbox to reverse the order that they appear on the page.

    .input-group {
        display: flex;
        flex-direction: column-reverse;
    }
    
    input:focus + label {
        color: green;
    }
    <div class="input-group">
        <input value="Input" />
        <label>Label</label>
    </div>

    0 讨论(0)
  • 2020-12-20 15:08

    One solution would be to use the :focus-within selector.

    So, you'd do something like the below. Assuming that you always have an input of some description inside of a control-group, it will style the label whenever the input is focused on.

    control-group {
        &:focus-within {
            control-label {
                color: red; 
            }
        }
    }
    

    More information can be found here: https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-within

    0 讨论(0)
提交回复
热议问题