diff options
Diffstat (limited to 'files/ru/web/css')
-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>, но наоборот */ |