--- title: ':focus-within' slug: 'Web/CSS/:focus-within' translation_of: 'Web/CSS/:focus-within' ---
Lớp giả CSS :focus-within
đại diện cho thành phần nhận focus hoặc chứa một thành phần nhận focus. Nói cách khác, nó đại diện cho một thành phần mà chính nó khớp bởi một lớp giả {{cssxref(":focus")}} hoặc có một hậu duệ (con cháu) được khớp bởi :focus
. (Gồm cả hậu duệ trong shadow trees.)
/* Chọn một <div> khi hậu duệ của nó được focus */
div:focus-within {
background: cyan;
}
Nó rất hữu dụng, ví dụ chung, để làm nổi bật toàn bộ container {{htmlElement("form")}} khi người dùng focus vào một trong các field {{htmlElement("input")}} của nó.
Trong ví dụ này, form sẽ nhận kiểu màu đặc biệt khi text input nhận focus.
<p>Try typing into this form.</p> <form> <label for="given_name">Given Name:</label> <input id="given_name" type="text"> <br> <label for="family_name">Family Name:</label> <input id="family_name" type="text"> </form>
form { border: 1px solid; color: gray; padding: 4px; } form:focus-within { background: #ff8; color: black; } input { margin: 4px; }
{{EmbedLiveSample("Example", 500, 150)}}
Chi tiết | Tình trạng | Comment |
---|---|---|
{{SpecName("CSS4 Selectors", "#the-focus-within-pseudo", ":focus-within")}} | {{Spec2("CSS4 Selectors")}} | Initial definition. |
{{Compat("css.selectors.focus-within")}}