Home  >  Article  >  Web Front-end  >  What Happened to Column Offsetting in Bootstrap 4 Beta?

What Happened to Column Offsetting in Bootstrap 4 Beta?

Linda Hamilton
Linda HamiltonOriginal
2024-11-08 00:50:02855browse

What Happened to Column Offsetting in Bootstrap 4 Beta?

Bootstrap 4 Beta: The Removal and Restoration of Column Offsetting

Bootstrap 4, in its Beta 1 release, introduced significant changes to the way columns were offset. However, with the subsequent release of Beta 2, these changes have been reversed.

From offset-md-* to ml-auto

In Bootstrap 4 Beta 1, the offset-md-* classes were removed. Instead, developers were encouraged to use the .ml-auto class to offset columns. However, this method did not provide the same level of precision as the previous approach.

Restoring Offset Classes in Beta 2

Fortunately, in Beta 2, the offset classes have been restored. The new syntax uses the format offset-{breakpoint}-, replacing the previous col-{breakpoint}-offset- syntax.

Custom Offsetting

To achieve custom column offsets, such as the now-deprecated

Using Dummy Placeholders

<br><div><pre class="brush:php;toolbar:false">  <div>


Using ml-auto and mr-auto

To center two adjacent columns, developers can apply ml-auto and mr-auto to both columns.

<br><div><pre class="brush:php;toolbar:false">    <div>


Using mx-auto

To center a single column, developers can use mx-auto to create equal margins on both sides.

Conclusion

The removal and restoration of column offsets in Bootstrap 4 has created some temporary confusion for developers. However, with the reintroduction of specific offset classes in Beta 2, along with the availability of workaround methods, developers can continue to achieve custom column layouts in Bootstrap 4.

The above is the detailed content of What Happened to Column Offsetting in Bootstrap 4 Beta?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Can CSS Select Elements Based on Inner HTML?Next article:Can CSS Select Elements Based on Inner HTML?

Related articles

See more