значения свойства:
* {
margin
:
0
;
padding
}
.a, #p
1
, .b {
width
300px
height
50px
30px
background-color
#7092BE
.a {
padding-bottom
5px
* { margin: 0; padding: 0; } .a, #p1, .b { width: 300px; height: 50px; margin: 30px 0 30px 30px; background-color: #7092BE; } .a { padding-bottom: 5px; }
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
link
href
"css/style.css"
rel
"stylesheet"
script
type
"text/javascript"
src
"https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"
></
</
body
p
class
"a"
>To be or not to be?</
id
"p1"
"b"
/*JavaScript*/
document.getElementById("p1").style.paddingBottom = "20px";
/*jQuery*/
$(document).ready(function () {
$(".b").css({ "padding-bottom": "50px" });
});