Skip to content

How to have form with equal width fields without taking full page width #1306

Discussion options

You must be logged in to vote

Huh, I didn't realize you wanted it left aligned. You could just override the margin-left: auto !important rule in the container, or use something like a grid instead.

This might be an easy feature request as well, does anyone have any thoughts on a left or right "floated" container? The CSS might look something like:

.ui.container:not(.fluid) {
    width: 933px;
}
.ui.container:not(.left.floated) {
    margin-right: auto;
}
.ui.container:not(.right.floated) {
    margin-left: auto;
}

Replies: 7 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by lubber-de
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
4 participants
Converted from issue

This discussion was converted from issue #1306 on October 09, 2020 06:28.