Skip to content

Instantly share code, notes, and snippets.

@mohan-chinnappan-n
Created August 20, 2014 19:07
Show Gist options
  • Save mohan-chinnappan-n/79103ed798f3662c5b7a to your computer and use it in GitHub Desktop.
Save mohan-chinnappan-n/79103ed798f3662c5b7a to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../mohan-hw/mohan-hw.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#mohan_hw {
left: 440px;
top: 270px;
position: absolute;
}
#h2 {
left: 790px;
top: 80px;
position: absolute;
}
#mohan_hw1 {
left: 1500px;
top: 580px;
}
</style>
<mohan-hw id="mohan_hw">
</mohan-hw>
<h2 id="h2">Welcome to Polymer! </h2>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment