aboutsummaryrefslogtreecommitdiff
path: root/files/ru/learn/css/building_blocks/values_and_units/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/learn/css/building_blocks/values_and_units/index.html')
-rw-r--r--files/ru/learn/css/building_blocks/values_and_units/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/learn/css/building_blocks/values_and_units/index.html b/files/ru/learn/css/building_blocks/values_and_units/index.html
index d495b04979..689292d9fc 100644
--- a/files/ru/learn/css/building_blocks/values_and_units/index.html
+++ b/files/ru/learn/css/building_blocks/values_and_units/index.html
@@ -34,7 +34,7 @@ translation_of: Learn/CSS/Building_blocks/Values_and_units
<p>В следующем примере мы установили цвет нашего заголовка используя ключевое слово и фон используя функцию  <code>rgb()</code>:</p>
-<pre class="brush: css notranslate"><code>h1 {
+<pre class="brush: css"><code>h1 {
color: black;
background-color: rgb(197,93,161);
} </code>