aboutsummaryrefslogtreecommitdiff
path: root/files/ca/web/html/element/frameset/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ca/web/html/element/frameset/index.html')
-rw-r--r--files/ca/web/html/element/frameset/index.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/files/ca/web/html/element/frameset/index.html b/files/ca/web/html/element/frameset/index.html
new file mode 100644
index 0000000000..a85298fbc8
--- /dev/null
+++ b/files/ca/web/html/element/frameset/index.html
@@ -0,0 +1,45 @@
+---
+title: <frameset>
+slug: Web/HTML/Element/frameset
+tags:
+ - Deprecated
+ - Element
+ - HTML
+ - Reference
+ - Web
+translation_of: Web/HTML/Element/frameset
+---
+<div>{{Deprecated_header}}</div>
+
+<h2 id="Sumari">Sumari</h2>
+
+<p>L'element HTML <code>&lt;frameset&gt;</code> es un contenidor d'elements {{HTMLElement ("frame")}}.</p>
+
+<div class="note">A causa de que l'ús de marcs està desaconsellat a favor de la utilització {{HTMLElement ("iframe")}}, aquest element no s'utilitza generalment pels llocs web moderns.</div>
+
+<h2 id="Atributs">Atributs</h2>
+
+<p>Com tots els altres elements HTML, aquest element és compatible amb els <a href="/en-US/HTML/Global_attributes" title="HTML/Global attributes">atributs globals</a>.</p>
+
+<dl>
+ <dt>{{htmlattrdef("cols")}}</dt>
+ <dd>Aquest atribut especifica el nombre i grandària dels espais horitzontals en un conjunt de marcs.</dd>
+ <dt>{{htmlattrdef("rows")}}</dt>
+ <dd>Aquest atribut especifica el nombre i grandària dels espais verticals en un conjunt de marcs.</dd>
+</dl>
+
+<h2 id="Exemple">Exemple</h2>
+
+<pre class="brush:html">&lt;frameset cols="50%,50%"&gt;
+ &lt;frame src="https://developer.mozilla.org/en/HTML/Element/frameset" /&gt;
+ &lt;frame src="https://developer.mozilla.org/en/HTML/Element/frame" /&gt;
+&lt;/frameset&gt;</pre>
+
+<h2 id="Veure">Veure</h2>
+
+<ul>
+ <li>{{HTMLElement("frame")}}</li>
+ <li>{{HTMLElement("iframe")}}</li>
+</ul>
+
+<p>{{HTMLRef}}</p>