HTML-GL icon indicating copy to clipboard operation
HTML-GL copied to clipboard

Absolute positioning on top-level element causes it not to render

Open t-mullen opened this issue 7 years ago • 0 comments

This works fine:

<html-gl>
  <h1>Hello world</h1>
</html-gl>

This causes the h1 element to not render:

<html-gl>
  <h1 style="position:absolute">Hello world</h1>
</html-gl>

I wasn't able to determine if the positioning is just really offset to some absolute point and it's rendering off-canvas, or if it's not rendering at all.

t-mullen avatar May 04 '18 01:05 t-mullen