[Solved] Position absolute is not relative to its its parent CSS
*{ box-sizing: border-box; } .empty-container { height: 100px; border: 1px solid gray; } .container { height: calc(100% – 100px); border: 1px solid red; display: flex; position: relative; } .component-loader{ border: 1px solid gray; position: absolute; height: 90px; width: 90px; left: 0; right: 0; top: 0; bottom: 0; margin: auto; } .loader-spinner:before { content: “”; margin: … Read more