CSS Sticky header
问题 I have added a sticky header to my homepage, however the sticky header seems to be behind the rest of the content on the page, so when i scroll down the page, images and text are on top of the header, is there a way to stop this? Here is my code: <style> /* Reset body padding and margins */ body { margin: 0; padding: 0; } /* Make Header Sticky */ #header_container { background: #827878; border: 1px solid #666; height: 60px; left: 0; position: fixed; width: 100%; top: 0; } #header { line