diff options
author | Shandy <mrshandy@yandex.ru> | 2021-07-10 12:32:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-10 12:32:53 +0300 |
commit | fff8eedb11e2a97e919f59c34e8d51c209eb6b8a (patch) | |
tree | 928d1b373153dd030d45893d7f63415e99a276af | |
parent | 6b8367d36a99d97e88660cf03290ae1fac295a66 (diff) | |
download | translated-content-fff8eedb11e2a97e919f59c34e8d51c209eb6b8a.tar.gz translated-content-fff8eedb11e2a97e919f59c34e8d51c209eb6b8a.tar.bz2 translated-content-fff8eedb11e2a97e919f59c34e8d51c209eb6b8a.zip |
Translated description for row and column (#1471)
-rw-r--r-- | files/ru/web/css/flex-direction/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ru/web/css/flex-direction/index.html b/files/ru/web/css/flex-direction/index.html index b5d24a8f90..c878ec7d77 100644 --- a/files/ru/web/css/flex-direction/index.html +++ b/files/ru/web/css/flex-direction/index.html @@ -17,13 +17,13 @@ translation_of: Web/CSS/flex-direction <h2 id="Синтаксис">Синтаксис</h2> -<pre class="brush:css">/* The direction text is laid out in a line */ +<pre class="brush:css">/* Направление, в котором блоки будут располагаться в строку */ flex-direction: row; /* Как <row>, но наоборот */ flex-direction: row-reverse; -/* The direction in which lines of text are stacked */ +/* Направление, в котором блоки будут располагаться вертикально */ flex-direction: column; /* Как <column>, но наоборот */ |