The web page I am working on can be found at the following link:
This webpage consists of text and SVG images, with the hex bolts positioned over specific areas of the text. Achieving this effect requires absolute positioning within a relatively positioned container.
To view the HTML and CSS code used for this, you can refer to the codepen available here: https://codepen.io/jwir3/pen/ZEzRKyz
Here is a snippet of the associated HTML:
<!-- HTML Snippet Here -->
and below is a sample of the CSS:
/* CSS Snippet Here */
While the design appears as expected in Chrome, there are discrepancies when viewing it in Firefox. The positioning of the hex bolts on the right side (the "Y") seems off in Firefox, especially after inspecting it using dev tools. Refreshing the page doesn't always resolve this issue, which leads me to believe it could be related to the flexbox layout being used.
Despite both browsers adhering to similar specifications, there seems to be a difference in how they interpret certain elements of the layout. This has raised questions about the clarity of the specifications regarding flexible box models across different browsers.