aboutsummaryrefslogtreecommitdiff
path: root/files/nl/glossary/block
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
commit074785cea106179cb3305637055ab0a009ca74f2 (patch)
treee6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/nl/glossary/block
parentda78a9e329e272dedb2400b79a3bdeebff387d47 (diff)
downloadtranslated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz
translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2
translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip
initial commit
Diffstat (limited to 'files/nl/glossary/block')
-rw-r--r--files/nl/glossary/block/css/index.html18
-rw-r--r--files/nl/glossary/block/index.html13
-rw-r--r--files/nl/glossary/block/scripting/index.html16
3 files changed, 47 insertions, 0 deletions
diff --git a/files/nl/glossary/block/css/index.html b/files/nl/glossary/block/css/index.html
new file mode 100644
index 0000000000..3325357852
--- /dev/null
+++ b/files/nl/glossary/block/css/index.html
@@ -0,0 +1,18 @@
+---
+title: Block (CSS)
+slug: Glossary/Block/CSS
+translation_of: Glossary/Block/CSS
+---
+<p>Een <strong>block </strong>op een webpagina is een {{glossary("HTML")}} {{glossary("element")}} dat op een nieuwe lijn, d.w.z. onder het voorgaande element in een horizontale schrijfwijze, en boven het volgende element (algemeen gekend als een <em>block-level element</em>). Bijvoorbeeld {{htmlelement("p")}} is standaard een block-level element, terwijl {{htmlelement("a")}} een <em>inline element</em> is — u kan verschillende links naast mekaar zetten in de HTML broncode en ze zullen op dezelfde lijn staan in de getoonde uitvoer.</p>
+
+<p>Gebruik makend van de {{cssxref("display")}} eigenschap kan u veranderen of een element als een inline-element of een block-level (of een van de vele andere opties) wordt weergegeven; <strong>blocks</strong> zijn ook onderhevig aan de effecten van positionering en het gebruik van de {{cssxref("position")}} eigenschap.</p>
+
+<h2 id="Meer_informatie">Meer informatie</h2>
+
+<h3 id="Algemene_kennis">Algemene kennis</h3>
+
+<ul>
+ <li><a href="/nl-BE/docs/Web/Guide/CSS/Visual_formatting_model">Visual formatting model</a></li>
+</ul>
+
+<div>{{QuickLinksWithSubpages("/nl-BE/docs/Glossary")}}</div>
diff --git a/files/nl/glossary/block/index.html b/files/nl/glossary/block/index.html
new file mode 100644
index 0000000000..8f17177e82
--- /dev/null
+++ b/files/nl/glossary/block/index.html
@@ -0,0 +1,13 @@
+---
+title: Block
+slug: Glossary/Block
+tags:
+ - Disambiguation
+ - Glossary
+ - NeedsTranslation
+ - TopicStub
+translation_of: Glossary/Block
+---
+<p>The term <strong>block</strong> can have several meanings depending on the context. It may refer to:</p>
+
+<p>{{GlossaryDisambiguation}}</p>
diff --git a/files/nl/glossary/block/scripting/index.html b/files/nl/glossary/block/scripting/index.html
new file mode 100644
index 0000000000..b6f23e453a
--- /dev/null
+++ b/files/nl/glossary/block/scripting/index.html
@@ -0,0 +1,16 @@
+---
+title: Block (scripting)
+slug: Glossary/Block/Scripting
+translation_of: Glossary/Block/Scripting
+---
+<p>In {{glossary("JavaScript")}} is een block een verzameling van gerelateerde {{glossary("statement","statements")}} ingesloten in accolades ("{}"). U kan  bijvoorbeeld een block met instructies zetten na een {{jsxref("Statements/if...else","if (condition)")}} block, om aan te geven dat de interpreter de code in het block moet uitvoeren als de voorwaarde waar is, of dat het hele block moet overgeslagen worden als de woorwaarde onwaar is.</p>
+
+<h2 id="Meer_informatie">Meer informatie</h2>
+
+<h3 id="Leer_erover">Leer erover</h3>
+
+<ul>
+ <li><a href="https://developer.mozilla.org/nl-BE/docs/Web/JavaScript/Reference/Statements/block">JavaScript block statement</a></li>
+</ul>
+
+<p> </p>