---
id: bad87fee1348bd9aedf08824
title: Add Different Padding to Each Side of an Element
challengeType: 0
videoUrl: https://scrimba.com/c/cB7mwUw
forumTopicId: 16634
localeTitle: Добавьте разные внутренние отступы к каждой стороне элемента
---
## Description
Иногда вам нужно настроить элемент таким образом, чтобы на каждой его стороне было различное количество внутренних отступов - padding
. CSS позволяет вам управлять padding
всех четырех отдельных сторон элемента с помощью свойств padding-top
, padding-right
, padding-bottom
и padding-left
.
## Instructions
Задайте синему квадрату padding
40px
на его верхней и левой стороне, но только 20px
на его нижней и правой стороне.
## Tests
```yml
tests:
- text: Your blue-box
class should give the top of the elements 40px
of padding
.
testString: assert($(".blue-box").css("padding-top") === "40px");
- text: Your blue-box
class should give the right of the elements 20px
of padding
.
testString: assert($(".blue-box").css("padding-right") === "20px");
- text: Your blue-box
class should give the bottom of the elements 20px
of padding
.
testString: assert($(".blue-box").css("padding-bottom") === "20px");
- text: Your blue-box
class should give the left of the elements 40px
of padding
.
testString: assert($(".blue-box").css("padding-left") === "40px");
```
## Challenge Seed
```html
margin
padding
padding
```
## Solution
```html
margin
padding
padding
```