Answers for "bootstrap embed column"

0

how will it look when there is a container inside a a row bootstrap

<div class="container">
  <div class="row">
    <div class="col align-self-start">
      One of three columns
    </div>
    <div class="col align-self-center">
      One of three columns
    </div>
    <div class="col align-self-end">
      One of three columns
    </div>
  </div>
</div>
Posted by: Guest on July-02-2020
3

.col-6 bootstrap

.col-6{
	flex: 0 0 50%;
	max-width: 50%;
}
Posted by: Guest on October-16-2020

Browse Popular Code Answers by Language