Seeking help with my previous post on: Animation stop with css3
The slider functions flawlessly in Chrome, but encounters issues in Firefox. Any suggestions or insights are welcomed.
You can access the slider here
It appears that there is a compatibility problem in Firefox related to absolute positioning and display as table-cell.
Snippet of my code:
<header>
<div>
<img src="./images/ironman.png">
<span>Ironman</span>
</div>
<!-- Repeat div structure for remaining content -->
</header>
Here is the corresponding CSS:
header {
margin-top: 10px;
width: 1185px;
display: table;
overflow: hidden;
background-color: #000;
height: 500px;
}
<!-- Additional CSS styling rules provided -->