aboutsummaryrefslogtreecommitdiff
path: root/files/de/glossary/block
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
commit4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch)
treed4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/glossary/block
parent33058f2b292b3a581333bdfb21b8f671898c5060 (diff)
downloadtranslated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip
initial commit
Diffstat (limited to 'files/de/glossary/block')
-rw-r--r--files/de/glossary/block/css/index.html22
-rw-r--r--files/de/glossary/block/index.html11
-rw-r--r--files/de/glossary/block/scripting/index.html20
3 files changed, 53 insertions, 0 deletions
diff --git a/files/de/glossary/block/css/index.html b/files/de/glossary/block/css/index.html
new file mode 100644
index 0000000000..5484f88553
--- /dev/null
+++ b/files/de/glossary/block/css/index.html
@@ -0,0 +1,22 @@
+---
+title: Block (CSS)
+slug: Glossary/Block/CSS
+tags:
+ - Block
+ - CSS
+ - Glossar
+ - Glossary
+ - display
+translation_of: Glossary/Block/CSS
+---
+<p>Ein <strong>Block </strong>auf einer Website ist ein {{glossary("HTML")}}-{{glossary("element")}}, das in einer neuen Zeile angezeigt wird, also unter dem vorherigen Element und über dem folgenden (gemeinhin bekannt als <em>Blockelement</em>). Beispielsweise ist ein {{htmlelement("p")}} standardmäßig ein Blockelement, während ein {{htmlelement("a")}} ein eingebundenes Element (engl. "<em>inline element"</em>) ist — mehrere Links können so nebeneinander im HTML-Quelltext stehen und dann in der gerenderten Ausgabe auf derselben Zeile liegen.</p>
+
+<p>Durch Verwendung der {{cssxref("display")}}-Eigenschaft können Sie bestimmen, ob ein Element als Block oder eingebunden dargestellt wird (neben einigen weiteren Optionen). Blöcke werden weiterhin beeinflusst von Positionierungsangaben durch die {{cssxref("position")}}-Eigenschaft.</p>
+
+<h2 id="Mehr_erfahren">Mehr erfahren</h2>
+
+<h3 id="Allgemeinwissen">Allgemeinwissen</h3>
+
+<ul>
+ <li><a href="/en-US/docs/Web/Guide/CSS/Visual_formatting_model">Visual formatting model</a></li>
+</ul>
diff --git a/files/de/glossary/block/index.html b/files/de/glossary/block/index.html
new file mode 100644
index 0000000000..9b29b4e509
--- /dev/null
+++ b/files/de/glossary/block/index.html
@@ -0,0 +1,11 @@
+---
+title: Block
+slug: Glossary/Block
+tags:
+ - Block
+ - Glossary
+translation_of: Glossary/Block
+---
+<p>Der Begriff <strong>Block</strong> hat mehrere, kontextabhängige Bedeutungen, darunter:</p>
+
+<p>{{GlossaryDisambiguation}}</p>
diff --git a/files/de/glossary/block/scripting/index.html b/files/de/glossary/block/scripting/index.html
new file mode 100644
index 0000000000..93fa69e24c
--- /dev/null
+++ b/files/de/glossary/block/scripting/index.html
@@ -0,0 +1,20 @@
+---
+title: Block (Scripting)
+slug: Glossary/Block/Scripting
+tags:
+ - Anweisungsblock
+ - Block
+ - Glossary
+ - JavaScript
+ - Scripting
+translation_of: Glossary/Block/Scripting
+---
+<p>In {{glossary("JavaScript")}} ist ein Block eine Sammlung zueinander gehöriger {{glossary("statement","Anweisungen")}}, die von geschweiften Klammern ("{}") eingeschlossen sind. Zum Beispiel können Sie einen Block mit Anweisungen nach einem {{jsxref("Statements/if...else","if (condition)")}}-Block setzen, wodurch Sie deutlich machen, dass der Interpreter den Code innerhalb dieses Blocks ausführen soll, wenn die Bedingung zu <code>true</code> evaluiert, oder ihn überspringen soll, wenn die Bedingung <code>false</code> ergibt.</p>
+
+<h2 id="Mehr_erfahren">Mehr erfahren</h2>
+
+<h3 id="Lernmaterial">Lernmaterial</h3>
+
+<ul>
+ <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/block">JavaScript block statement</a></li>
+</ul>