Pureblood
Pureblood

Reputation: 125

Center a form using Pure

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

Answers (1)

Octavian
Octavian

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

Related Questions