aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/height/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/css/height/index.html')
-rw-r--r--files/ru/web/css/height/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/css/height/index.html b/files/ru/web/css/height/index.html
index 4720acaada..cf011ab019 100644
--- a/files/ru/web/css/height/index.html
+++ b/files/ru/web/css/height/index.html
@@ -72,17 +72,17 @@ height: unset;
<h3 id="HTML">HTML</h3>
-<pre><code>&lt;div id="taller"&gt;Я 50 пикселей в высоту.&lt;/div&gt;
+<pre class="brush: html">&lt;div id="taller"&gt;Я 50 пикселей в высоту.&lt;/div&gt;
&lt;div id="shorter"&gt;Я 25 пикселей в высоту.&lt;/div&gt;
&lt;div id="parent"&gt;
&lt;div id="child"&gt;
Моя высота - половина от высоты родителя.
&lt;/div&gt;
-&lt;/div&gt;</code></pre>
+&lt;/div&gt;</pre>
<h3 id="CSS">CSS</h3>
-<pre><code>div {
+<pre class="brush: css">div {
width: 250px;
margin-bottom: 5px;
border: 2px solid blue;
@@ -103,7 +103,7 @@ height: unset;
#child {
height: 50%;
width: 75%;
-}</code></pre>
+}</pre>
<p> </p>