базовые
иерархические
базовые фильтры
фильтр контента
фильтр видимости
* {
margin
:
0
;
padding
}
.a {
height
400px
width
position
absolute
top
50%
left
margin-top
-200px
margin-left
background-color
#3BA9DE
color
#FFF
font-size
56px
text-align
center
line-height
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
link
href
"css/style.css"
rel
"stylesheet"
<!-- include a file -->
script
src
"js/jquery-2.1.0.min.js"
></
</
body
$(document).ready(function() {
$('body').prepend($('<
div
>', {id: 'd0', text: 'Hello World!'}));
$('#d0').addClass('a');
});