Asked By: Anonymous
I have used “core-header-panel” element of Polymer in my application, However Not sure why contents inside div is not visible.
Complete code at – http://jsfiddle.net/ilovenagpur/5rm4eznm/1/
please suggest if i am missing something here.
Code Snippet :
<body fullbleed unresolved vertical layout>
<core-header-panel >
<core-toolbar class="medium-tall">
<div flex>I am Heading</div>
<core-icon-button icon="search"></core-icon-button>
<paper-tabs class="bottom fit" selected="0">
<paper-tab>This Week</paper-tab>
<paper-tab>Next Week</paper-tab>
<paper-tab>History</paper-tab>
</paper-tabs>
</core-toolbar>
<div class="content">
THIS <br />
COMPONENT <br />
IS NOT <br />
VISIBLE <br />
THIS <br />
COMPONENT <br />
IS NOT <br />
VISIBLE <br />
THIS <br />
COMPONENT <br />
IS NOT <br />
VISIBLE <br />
THIS <br />
COMPONENT <br />
IS NOT <br />
VISIBLE <br />
<footer layout vertical center>
<div >I am footer</div>
</footer>
</div>
</core-header-panel>
</body>
Solution
Answered By: Anonymous
I was able to fix issue. and achieved desired output without core-header-panel
, Here is working code.
http://jsfiddle.net/ocw5x2aL/8/
Thanks namiheike for your help and suggestions.