하위 태그에 포커스가 있으면 상위 태그에서 이벤트가 트리거됩니다.
<template> <div> <label for=""> <input type="text"> </label> </div> </template> <style scoped> div:focus-within{ border-color: #ff00ff; } </style>
하위 태그에 포커스가 있으면 상위 태그에서 이벤트가 트리거됩니다.
<template> <div> <label for=""> <input type="text"> </label> </div> </template> <style scoped> div:focus-within{ border-color: #ff00ff; } </style>