Браузер |
Internet Explorer |
Chrome |
Opera |
Safari |
Firefox |
|||||||||||||||
Версия |
6.0 |
7.0 |
8.0 |
9.0 |
2.0 |
3.0 |
4.0 |
5.0 |
9.2 |
9.6 |
10 |
2.0 |
3.1 |
4.0 |
5.0 |
2.0 |
3.0 |
3.6 |
4.0 |
|
Поддержка |
CSS | CSS1+ |
Значение по умолчанию | 0 |
Наследуется | Нет |
Применяется | Ко всем элементам |
Ссылка на спецификацию | открыть в новой вкладке |
padding-bottom: значение | inherit
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>padding-bottom</title>
<style type="text/css">
.layer {
background: #fc3; /*Цвет фона*/
border: 2px solid #000; /*Параметры рамки*/
padding-bottom: 40px; /*Поле снизу от текста*/
padding-top: 40px; /*Поле сверху от текста*/
text-align: center; /*Выравнивание по центру*/
}
</style>
</head>
<body>
<div class="layer">
Lorem ipsum dolor sit amet
</div>
</body>
</html>