<pre><code class="lang-html"><html lang = en>
<head>
<link rel = stylesheet
href = https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.css>
<script src = https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js></script>
<script src = https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-animate.min.js></script>
<script src = https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-aria.min.js></script>
<script src = https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-messages.min.js></script>
<script src = https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.js></script>
<link rel = stylesheet href = https://fonts.googleapis.com/icon?family=Material+Icons>
<style>
.box {
color:white;
padding:10px;
text-align:center;
border-style: inset;
}
.green {
background:green;
}
.blue {
background:blue;
}
</style>
<script language = javascript>
angular
.module('firstApplication', ['ngMaterial'])
.controller('layoutController', layoutController);
function layoutController ($scope) {
}
</script>
</head>
<body ng-app = firstApplication>
<div id = layoutContainer ng-controller = layoutController as ctrl
layout = row style = height:100px; ng-cloak layout-wrap>
<div flex = 30 class = green box>
[flex = 30]
</div>
<div flex = 45 class = blue box>
[flex = 45]
</div>
<div flex = 25 class = green box>
[flex = 25]
</div>
<div flex = 33 class = green box>
[flex = 33]
</div>
<div flex = 66 class = blue box>
[flex = 66]
</div>
<div flex = 50 class = blue box>
[flex = 50]
</div>
<div flex class = green box>
[flex]
</div>
</div>
</body>
</html>
</code></pre>