We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This
<div class="row"> <div class="span8"> <div class="row"> <div class="span4"></div> <div class="span4"></div> </div> </div> <div class="span4"></div> </div>
is converted to
<div class="row"> <div class="col-sm-8 col-md-8"> <div class="row"> <div class="col-sm-4 col-md-4"></div> <div class="col-sm-4 col-md-4"></div> </div> </div> <div class="col-sm-4 col-md-4"></div> </div>
but should be converted to
<div class="row"> <div class="col-sm-8 col-md-8"> <div class="row"> <div class="col-sm-6 col-md-6"></div> <div class="col-sm-6 col-md-6"></div> </div> </div> <div class="col-sm-4 col-md-4"></div> </div>
The text was updated successfully, but these errors were encountered:
http://www.bootply.com/118970 vs. http://www.bootply.com/118972
Sorry, something went wrong.
No branches or pull requests
This
is converted to
but should be converted to
The text was updated successfully, but these errors were encountered: