Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Browser support for using margin left/right to align left or right Reply To: Browser support for using margin left/right to align left or right

#239830
pcenero
Participant

Really? Horizontally aligning something without making the proceeding content flow seems useful, i.e.:

.foobar {
    margin-left: auto;
}

vs.

.foobar {
    float: right;
    clear: both;
}