focus-within : focused인 자식을 가진 부모 엘리먼트에 적용되는 것. DOCTYPE html>html lang="kr"> head> title>The Nick Timestitle> style> body { height: 1000vh; margin: 50px; } form { border: 1px solid salmon; display: flex; flex-direction: column; padding: 20px; } form:focus-within { border-color: seagreen; } style> head> body> form> input type="text" name="" id="" /> input type="text" name="" id="" /> input type="..