-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.74 KB
/
index.html
File metadata and controls
43 lines (37 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>Angular Flex</title>
</head>
<body ng-app="angularFlex">
<div flex-container="row" flex-align="around stretch" >
<div flex-item="2" flex-order="3" fx-padding style="background-color:#ff0000">
asdasdsd asd sad sad sa dasd asd asd sad sadasd sad sad sad asd asd asd sad asd sad sad sadsa dsa d sadsa das dasd sad sad asd sad as dasd asd asd
</div>
<div flex-item="1" flex-order="2" fx-padding style="background-color:#00ff00">Helloasdas sdasd sadsadsadsd as dasds dssd as dsads a dsadds adsa dsa ds dsaad sd asd sadsad sad sad sadasdsad sadasdsadsa dsadsadsa dsadsdasd asdsad sad sad asd dsa dsad sd sadsad sd sd sad sad sadsa das 2</div>
<div flex-item="1" flex-order="1" fx-padding style="background-color:#ffff00">Hello3</div>
</div>
<div flex-container="row" flex-align="center center" style="width: 100%; background-color: #c3c3c3">
<h1>Flex Container</h1>
<h1>Angular</h1>
<h1>Flexbox</h1>
</div>
<div flex-container="row" flex-align="between center" style="width: 100%; background-color: #c3c3c3">
<h1>Flex Container</h1>
<h1>Angular</h1>
<h1>Flexbox</h1>
</div>
<div flex-container="row" flex-align="around center" style="width: 100%; background-color: #c3c3c3">
<h1>Flex Container</h1>
<h1>Angular</h1>
<h1>Flexbox</h1>
</div>
<div flex-container="row" style="width: 100%; background-color: #c3c3c3">
<h1 flex-item>Flex Container</h1>
<h1>Angular</h1>
<h1>Flexbox</h1>
</div>
<script type="text/javascript" src="bower_components/angular/angular.min.js"></script>
<script type="text/javascript" src="flex.module.js"></script>
</body>
</html>