Reputation: 125
I am using Pure to style my html. But for some reason it is pushing my from all the way to the left of the page. How can I fix this.
Upvotes: 3
Views: 1065
Reputation: 4579
You need to assign a width or a max-width on the form and align it on the center of the screen. Try this class:
.myForm {
margin-left: auto;
margin-right: auto;
max-width: 768px;
}
And also assign the .myForm class to your form.
Upvotes: 4