aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/border-bottom/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/css/border-bottom/index.html')
-rw-r--r--files/ru/web/css/border-bottom/index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/files/ru/web/css/border-bottom/index.html b/files/ru/web/css/border-bottom/index.html
index 2c4613dee8..bf69fc5788 100644
--- a/files/ru/web/css/border-bottom/index.html
+++ b/files/ru/web/css/border-bottom/index.html
@@ -13,13 +13,13 @@ translation_of: Web/CSS/border-bottom
<p>Как и все сокращённые свойства, <code>border-bottom</code> устанавливает значения всех свойств, которые он может установить, даже если они не указаны. Для тех свойств, которые не указаны оно устанавливает значения по умолчанию. Это означает, что ...</p>
-<pre class="brush: css notranslate">border-bottom-style: dotted;
+<pre class="brush: css">border-bottom-style: dotted;
border-bottom: thick green;
</pre>
<p>... это то же самое, что ...</p>
-<pre class="brush: css notranslate">border-bottom-style: dotted;
+<pre class="brush: css">border-bottom-style: dotted;
border-bottom: none thick green;
</pre>
@@ -37,7 +37,7 @@ border-bottom: none thick green;
<h2 id="Syntax">Syntax</h2>
-<pre class="brush: css no-line-numbers notranslate">border-bottom: 1px;
+<pre class="brush: css no-line-numbers">border-bottom: 1px;
border-bottom: 2px dotted;
border-bottom: medium dashed blue;
</pre>
@@ -69,13 +69,13 @@ border-bottom: medium dashed blue;
<h4 id="HTML">HTML</h4>
-<pre class="brush: html notranslate">&lt;div&gt;
+<pre class="brush: html">&lt;div&gt;
This box has a border on the bottom side.
&lt;/div&gt;</pre>
<h4 id="CSS">CSS</h4>
-<pre class="brush: css notranslate">div {
+<pre class="brush: css">div {
border-bottom: 4px dashed blue;
background-color: gold;
height: 100px;