I've created a container
class with the following CSS:
.container {
margin: 0 auto;
width: min(90%, 70.5rem);
}
This setup centers the content on the page within the container, which is great for organization. However, I'm looking to create a custom container where the margin only appears on the left side, allowing the content to overflow on the right side of the page. How can I modify my code to achieve this effect? I've tried using margin-left
before, but it's not responsive like the current code I have set up.