blob: 7338c7d9f7eb41624294317d5a1818846c8956ec (
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
|
---
title: ':-moz-broken'
slug: 'Web/CSS/:-moz-broken'
tags:
- CSS
- 'CSS:Mozilla Extensions'
- NeedsCompatTable
- Non-standard
- Pseudo-class
- Reference
- Selector
translation_of: 'Web/CSS/:-moz-broken'
---
<div>{{CSSRef}}{{Non-standard_header}}{{gecko_minversion_header("1.9")}}</div>
<p><strong><code>:-moz-broken</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> の<a href="/ja/docs/Web/CSS/Pseudo-classes">擬似クラス</a>で、 <a href="/ja/docs/Web/CSS/Mozilla_Extensions">Mozilla 拡張</a> であり、壊れた画像リンクを表している要素に一致します。</p>
<div class="note">
<p><strong>注:</strong> このセレクターは、主にテーマ開発者が使用することを意図しているものです。</p>
</div>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate">:-moz-broken</pre>
<h2 id="Examples" name="Examples">例</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html notranslate"><img src="broken.jpg" alt="This image is broken. :-("></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css notranslate">:-moz-broken {
background: bisque;
padding: 8px;
}</pre>
<h3 id="Result" name="Result">結果</h3>
<p>{{EmbedLiveSample("Examples")}}</p>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<p>標準の一部ではありません。</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("css.selectors.-moz-broken")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{cssxref(":-moz-loading")}}, {{cssxref(":-moz-suppressed")}}, {{cssxref(":-moz-user-disabled")}}</li>
<li>{{bug("11011")}}</li>
</ul>
|