From 12e2a5b56155aed6a202bbc6692c087bd203b3e5 Mon Sep 17 00:00:00 2001 From: Oleg Panasenko <32162077+DropDeadDev@users.noreply.github.com> Date: Thu, 25 Apr 2019 07:25:59 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D1=8B=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B8=20?= =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=B5=D0=B2=D0=BE=D0=B4=D0=B0=20(#31028)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bootstrap/center-text-with-bootstrap.russian.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/russian/03-front-end-libraries/bootstrap/center-text-with-bootstrap.russian.md b/curriculum/challenges/russian/03-front-end-libraries/bootstrap/center-text-with-bootstrap.russian.md index 40c0e6f833..37bf952db3 100644 --- a/curriculum/challenges/russian/03-front-end-libraries/bootstrap/center-text-with-bootstrap.russian.md +++ b/curriculum/challenges/russian/03-front-end-libraries/bootstrap/center-text-with-bootstrap.russian.md @@ -3,11 +3,11 @@ id: bad87fee1348bd8acde08812 title: Center Text with Bootstrap challengeType: 0 videoUrl: '' -localeTitle: Текст центра с бутстрапом +localeTitle: Центрирование текста с помощью Bootstrap --- ## Description -
Теперь, когда мы используем Bootstrap, мы можем сосредоточить наш элемент заголовка, чтобы он выглядел лучше. Все, что нам нужно сделать, это добавить text-center класса к нашему элементу h2 . Помните, что вы можете добавить несколько классов в один и тот же элемент, разделив каждое из них на пробел, например: <h2 class="red-text text-center">your text</h2>
+
Используя Bootstrap, мы можем центрировать наш элемент заголовка, чтобы он выглядел лучше. Все, что нам нужно сделать, это добавить класс text-center к нашему элементу h2 . Помните, что вы можете добавить несколько классов в один и тот же элемент, разделив их пробелом, например: <h2 class="red-text text-center">your text</h2>
## Instructions
@@ -18,7 +18,7 @@ localeTitle: Текст центра с бутстрапом ```yml tests: - - text: 'Ваш элемент h2 должен быть центрирован, применяя text-center класса' + - text: 'Ваш элемент h2 должен быть центрирован, применяя класс text-center' testString: 'assert($("h2").hasClass("text-center"), "Your h2 element should be centered by applying the class text-center");' - text: Ваш элемент h2 должен по-прежнему иметь класс red-text testString: 'assert($("h2").hasClass("red-text"), "Your h2 element should still have the class red-text");'