blob: 3c39e176fad4c0490f62217e5469d53d7bd2ae78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
---
title: ':focus-within'
slug: 'Web/CSS/:focus-within'
translation_of: 'Web/CSS/:focus-within'
---
<div>{{CSSRef}}</div>
<p><a href="/en-US/docs/Web/CSS/Pseudo-classes">Lớp giả</a> <a href="/en-US/docs/Web/CSS">CSS</a> <strong><code>:focus-within</code></strong> đại diện cho thành phần nhận focus hoặc <em>chứa </em>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 <code>:focus</code>. (Gồm cả hậu duệ trong <a href="/en-US/docs/Web/Web_Components/Shadow_DOM">shadow trees</a>.)</p>
<pre><code>/* Chọn một <div> khi hậu duệ của nó được focus */</code>
div:focus-within {
background: cyan;
}</pre>
<p>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ó.</p>
<h2 id="Cú_pháp">Cú pháp</h2>
<pre class="syntaxbox">{{csssyntax}}</pre>
<h2 id="Ví_dụ">Ví dụ</h2>
<p>Trong ví dụ này, form sẽ nhận kiểu màu đặc biệt khi text input nhận focus.</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><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></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">form {
border: 1px solid;
color: gray;
padding: 4px;
}
form:focus-within {
background: #ff8;
color: black;
}
input {
margin: 4px;
}
</pre>
<h3 id="Result">Result</h3>
<p>{{EmbedLiveSample("Example", 500, 150)}}</p>
<h2 id="Chi_tiết">Chi tiết</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Chi tiết</th>
<th scope="col">Tình trạng</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("CSS4 Selectors", "#the-focus-within-pseudo", ":focus-within")}}</td>
<td>{{Spec2("CSS4 Selectors")}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="Tương_thích_Trình_duyệt">Tương thích Trình duyệt</h2>
<p>{{Compat("css.selectors.focus-within")}}</p>
<h2 id="Xem_cả">Xem cả</h2>
<ul>
<li>{{cssxref(":focus")}}</li>
</ul>
|