Ajax Loader
×

Untitled

HTML
<!DOCTYPE html>
1
<!DOCTYPE html>
2
<meta charset="utf-8">
3
<title>Уроки CSS. Часть 3</title>
4
<link rel="stylesheet" href="main.css">
5
 
6
 
7
 
8
<div class="container">Текст по центру</div>
 
CSS
.container {
1
.container {
2
margin: 20px;
3
width:150px;
4
height: 80px;
5
background: #444;
6
border-radius: 5px;
7
position:relative;
8
color: #fff;
9
display: table-cell;
10
vertical-align: middle;
11
text-align: center;
12
} 
13
 
14
.container:after {
15
content: '';
16
position:absolute;
17
border-top: 10px solid #444;
18
border-left: 10px solid transparent;
19
border-right: 10px solid transparent;
20
bottom: -10px;
21
left: 66px;
22
}
23
 
 

Untitled

CSSDeck G+