I'm trying to use this technique
to fill page height 100%
Ultimately it fails because DOM has custom tags that won't honor height tag
Example:
Works
<div style="height:100%">
ok here
<div style="height:100%">
<!-- WORKS: takes full browser height -->
</div>
</div>
Broken
<div style="height:100%">
ok here
<my-tag style="height:100%">
<!-- BROKEN : takes minimal browser height -->
</my-tag>
</div>
I tried using
<polymer-element name="my-tag" extends="div">
but then page silently doesn't render anything.
<squid>Ink!</squid>
) and those have always defaulted toinline: block
(they are instances ofHTMLUnknownElement
). – Scott Miles