I have the following markup and want to give a style to input-inner-button when the select is focused, how can I do that in CSS/SCSS?
<div class="input-wrapper">
  <div>
    <select>
      <option value="">Select</option>
      <option value="x">x</option>
      <option value="y">y</option>
    </select>
  </div>
  <div class="input-inner-button-group">
    <div class="input-inner-button">Inner Button</div>
  </div>
</div>update: I need the solution to be supported in Chrome, FF, IE back to 10, and Edge.
 
     
     
     
    