text-align
. text-align: justify;
вызывает все строки текста, кроме последней строки, для соответствия левому и правому краям строки строки. text-align: center;
центрирует текст text-align: right;
выравнивание по правому краю текста и text-align: left;
(по умолчанию) выравнивает текст по левому краю.
h4
, в котором говорится «Google», в центр. Затем оправдайте тег абзаца, который содержит информацию о том, как Google был основан.
h4
tag to set it to center.
testString: assert($('h4').css('text-align') == 'center');
- text: Your code should use the text-align property on the p
tag to set it to justify.
testString: assert($('p').css('text-align') == 'justify');
```
Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.
Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University.