blob: 5101ea266d9c6b99eb0bdabc948b335978755577 (
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
---
title: <acronym>
slug: Web/HTML/Element/acronym
tags:
- Element
- HTML
- 'HTML:Flow content'
- Obsolete
- Reference
- Web
translation_of: Web/HTML/Element/acronym
---
<div>{{obsolete_header}}</div>
<h2 id="Summary" name="Summary">Sumari</h2>
<p>L'element HTML acrònim (<code><acronym></code>) permet als autors indicar clarament una seqüència de caràcters que componen un acrònim o l'abreviatura d'una paraula. Aquest element s'ha eliminat en HTML5. Utilitzar l'element {{HTMLElement("abbr")}}.</p>
<div class="note">
<p><strong>Nota d'ùs: </strong>Aquest element s'ha eliminat en HTML5 i no s'ha d'utilitzar més. En lloc d'això els desenvolupadors web han d'utilitzar l'element {{HTMLElement("abbr")}}.</p>
</div>
<h2 id="Attributes" name="Attributes">Atributs</h2>
<p><span id="result_box" lang="ca"><span>Aquest</span> <span>element</span> <span>només </span><span>té</span></span> <a class="new " href="/en-US/docs/HTML/global_attributes" rel="internal" title="HTML/global attributes">atributs globals</a> <span id="result_box" lang="ca"><span>que és comú a</span> <span>tots</span> <span>els</span> <span>elements.</span></span></p>
<h2 id="DOM_Interface" name="DOM_Interface">Interfície DOM</h2>
<p>Aquest element implementa la interície {{domxref('HTMLElement')}}.</p>
<div class="note">Nota d'implementació<strong>: </strong>Fins Gecko 1.9.2 inclosos, Firefox implementa per a aquest element la interfície {{domxref('HTMLSpanElement')}}.</div>
<h2 id="Example" name="Example">Exemple</h2>
<pre class="brush:html"><p>The <acronym title="World Wide Web">WWW</acronym> is only a component of the Internet.</p>
</pre>
<h2 id="Default_styling" name="Default_styling">E<span class="short_text" id="result_box" lang="ca"><span>stil</span> <span>per defecte</span></span></h2>
<p>Encara que el propòsit d'aquesta etiqueta és purament per a la comoditat de l'autor, el seu estil per defecte varia d'un navegador a un altre:</p>
<ul>
<li>Alguns navegadors, com Internet Explorer, no té un estil diferent que un element {{HTMLElement("span")}} .</li>
<li>Opera, Firefox,Chrome i alguns altres afegeixen un subratllat de punts amb el contingut de l'element.</li>
<li>Uns navegadors no només afegeixen un subratllat de punts, sinó que també ho posen en versals; per evitar aquest estil, afegeixen alguna cosa com {{cssxref('font-variant')}}: <code>none</code> on el CSS s'encarregue d'aquest cas.</li>
</ul>
<p><span id="result_box" lang="ca"><span>Per</span> <span>tant</span><span>, es recomana</span> <span>encaridament</span> <span>que els</span> <span>autors</span> <span>web no</span> <span>confien </span> <span>totalment</span> <span>en l'estil</span> <span>predeterminat.</span></span></p>
<h2 id="Specifications" name="Specifications">Especificacions</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Especificació</th>
<th scope="col">Estat</th>
<th scope="col">Comentari</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML4.01', 'struct/text.html#edef-ACRONYM', '<acronym>')}}</td>
<td>{{Spec2('HTML4.01')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">Navegadors compatibles</h2>
<p>{{CompatibilityTable}}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Característica</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari (WebKit)</th>
</tr>
<tr>
<td>Suport bàsic</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Característica</th>
<th>Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Phone</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Suport bàsic</td>
<td>{{CompatNo}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<h2 id="See_also" name="See_also">Veure</h2>
<ul>
<li>L'element HTML {{HTMLElement("abbr")}}</li>
</ul>
<div>{{HTMLRef}}</div>
|