.mainCoverWrapper {
position: relative;
min-width:312px;
background:red
}
I'm trying to center a div
with min-width
of 312px
and make it expand according to its dynamic content while keeping it centered.
Right now the min-with
doesn't work at all because it needs a float. I can't use a float because I need the div centered on the page.
In other words, div
starts out with margin auto with a width of 312px
and expands with its added content while being centered. Is this possible?
Any help would be greatly appreciated.