Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Issue in latest version of Firefox

Tags:

firefox

Initially, when my site loads some images are sliced off, which reappear after a few seconds. But once it scrolled the issue will reappear. It occurs in the latest version of Firefox only. It's fine in Firefox version 44, but I am getting the issue in 49 and 52.

The HTML structure is as follows.

 <div style="transform: translate(0px, 0px); position: absolute; left: 0px; top: 0px;">
    <div class="whitecontent" style=" position: relative;">
      <p class="blockelemimage" style="position: absolute; top: -64px;">
        <img alt="Client Logo" src="">
      </p>
    </div>
  </div>
like image 433
Mahima Susan Thomas Avatar asked Nov 07 '22 23:11

Mahima Susan Thomas


1 Answers

there is issues about the transform-box and transform property in Firefox. they are an experimental features . check here . and they are disabled in the beta versions. also there are a reported bug here about that. hope those links would help you.

like image 127
Mohammed Omer Avatar answered Nov 27 '22 21:11

Mohammed Omer