Last active
December 4, 2017 11:42
-
-
Save mrkkr/0c7163e4477a6a16dabdc3b03cf679bf to your computer and use it in GitHub Desktop.
Zmiana kolejności kolumn we Boot4 Flex #html #css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="row"> | |
/// mobile-first! | |
<div class="col-3 col-md-6"> | |
<div class="card card-body">1</div> | |
</div> | |
<div class="col-6 col-md-12 order-2 order-md-12"> ///kolejność order-*-* | |
<div class="card card-body">3</div> | |
</div> | |
<div class="col-3 col-md-6 order-3"> | |
<div class="card card-body">2</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment