AngularJS Example
HTML
<div ng-app="tables">
<table>
<row key="x" value="y"></row>
<row key="1" value="2"></row>
<row key="longer" value="very long!"></row>
</table>
</div>
CSS
</style> <!-- Ugly Hack due to jsFiddle issue: http://goo.gl/BUfGZ -->
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.js"></script>
<style>
JavaScript
angular.module('tables',[])
.directive('row', function() {
return {
restrict: 'E',
replace: true,
scope: { key: '@', value: '@' },
template: '<div style="border: 1px solid red; padding: 20px; width: 200px; height: 200px">Rectangle</div>'
}
});