મુખ્ય સામગ્રી પર જાઓ ડૉક્સ નેવિગેશન પર જાઓ
Check
in English

કૉલમ

અમારી ફ્લેક્સબોક્સ ગ્રીડ સિસ્ટમને આભારી છે કે ગોઠવણી, ઓર્ડર અને ઑફસેટિંગ માટેના કેટલાક વિકલ્પો સાથે કૉલમને કેવી રીતે સંશોધિત કરવી તે જાણો. ઉપરાંત, બિન-ગ્રીડ તત્વોની પહોળાઈને સંચાલિત કરવા માટે કૉલમ વર્ગોનો ઉપયોગ કેવી રીતે કરવો તે જુઓ.

હેડ અપ! તમારી ગ્રીડ કૉલમને કેવી રીતે સંશોધિત અને કસ્ટમાઇઝ કરવી તે અંગે ડાઇવિંગ કરતા પહેલા પહેલા ગ્રીડ પેજ વાંચવાની ખાતરી કરો .

તેઓ કેવી રીતે કામ કરે છે

  • કૉલમ ગ્રીડના ફ્લેક્સબોક્સ આર્કિટેક્ચર પર બિલ્ડ કરે છે. ફ્લેક્સબોક્સનો અર્થ છે કે અમારી પાસે વ્યક્તિગત કૉલમ બદલવા અને પંક્તિ સ્તર પર કૉલમના જૂથોને સંશોધિત કરવાના વિકલ્પો છે . તમે પસંદ કરો કે કૉલમ કેવી રીતે વધે, સંકોચાય અથવા અન્યથા બદલાય.

  • ગ્રીડ લેઆઉટ બનાવતી વખતે, બધી સામગ્રી કૉલમમાં જાય છે. બુટસ્ટ્રેપની ગ્રીડનો વંશવેલો કન્ટેનરથી પંક્તિથી કૉલમ સુધી તમારી સામગ્રી પર જાય છે . દુર્લભ પ્રસંગોએ, તમે સામગ્રી અને કૉલમને જોડી શકો છો, પરંતુ ધ્યાન રાખો કે અણધાર્યા પરિણામો આવી શકે છે.

  • બુટસ્ટ્રેપમાં ઝડપી, પ્રતિભાવશીલ લેઆઉટ બનાવવા માટે પૂર્વવ્યાખ્યાયિત વર્ગોનો સમાવેશ થાય છે. દરેક ગ્રીડ ટાયર પર છ બ્રેકપોઇન્ટ્સ અને એક ડઝન કૉલમ સાથે , અમે તમારા ઇચ્છિત લેઆઉટ બનાવવા માટે તમારા માટે પહેલેથી જ ડઝનેક વર્ગો બાંધ્યા છે. જો તમે ઈચ્છો તો આને Sass દ્વારા અક્ષમ કરી શકાય છે.

ગોઠવણી

કૉલમને ઊભી અને આડી રીતે સંરેખિત કરવા માટે ફ્લેક્સબોક્સ સંરેખણ ઉપયોગિતાઓનો ઉપયોગ કરો.

વર્ટિકલ ગોઠવણી

ત્રણ કૉલમમાંથી એક
ત્રણ કૉલમમાંથી એક
ત્રણ કૉલમમાંથી એક
ત્રણ કૉલમમાંથી એક
ત્રણ કૉલમમાંથી એક
ત્રણ કૉલમમાંથી એક
ત્રણ કૉલમમાંથી એક
ત્રણ કૉલમમાંથી એક
ત્રણ કૉલમમાંથી એક
html
<div class="container text-center">
  <div class="row align-items-start">
    <div class="col">
      One of three columns
    </div>
    <div class="col">
      One of three columns
    </div>
    <div class="col">
      One of three columns
    </div>
  </div>
  <div class="row align-items-center">
    <div class="col">
      One of three columns
    </div>
    <div class="col">
      One of three columns
    </div>
    <div class="col">
      One of three columns
    </div>
  </div>
  <div class="row align-items-end">
    <div class="col">
      One of three columns
    </div>
    <div class="col">
      One of three columns
    </div>
    <div class="col">
      One of three columns
    </div>
  </div>
</div>
ત્રણ કૉલમમાંથી એક
ત્રણ કૉલમમાંથી એક
ત્રણ કૉલમમાંથી એક
html
<div class="container text-center">
  <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>

આડી ગોઠવણી

બે કૉલમમાંથી એક
બે કૉલમમાંથી એક
બે કૉલમમાંથી એક
બે કૉલમમાંથી એક
બે કૉલમમાંથી એક
બે કૉલમમાંથી એક
બે કૉલમમાંથી એક
બે કૉલમમાંથી એક
બે કૉલમમાંથી એક
બે કૉલમમાંથી એક
બે કૉલમમાંથી એક
બે કૉલમમાંથી એક
html
<div class="container text-center">
  <div class="row justify-content-start">
    <div class="col-4">
      One of two columns
    </div>
    <div class="col-4">
      One of two columns
    </div>
  </div>
  <div class="row justify-content-center">
    <div class="col-4">
      One of two columns
    </div>
    <div class="col-4">
      One of two columns
    </div>
  </div>
  <div class="row justify-content-end">
    <div class="col-4">
      One of two columns
    </div>
    <div class="col-4">
      One of two columns
    </div>
  </div>
  <div class="row justify-content-around">
    <div class="col-4">
      One of two columns
    </div>
    <div class="col-4">
      One of two columns
    </div>
  </div>
  <div class="row justify-content-between">
    <div class="col-4">
      One of two columns
    </div>
    <div class="col-4">
      One of two columns
    </div>
  </div>
  <div class="row justify-content-evenly">
    <div class="col-4">
      One of two columns
    </div>
    <div class="col-4">
      One of two columns
    </div>
  </div>
</div>

કૉલમ રેપિંગ

જો એક પંક્તિમાં 12 થી વધુ કૉલમ મૂકવામાં આવે, તો વધારાના કૉલમનું દરેક જૂથ, એક એકમ તરીકે, નવી લાઇન પર લપેટી જશે.

.col-9
.col-4
9 + 4 = 13 > 12 થી, આ 4-કૉલમ-વાઇડ ડિવ નવી લાઇન પર એક સંલગ્ન એકમ તરીકે વીંટળાય છે.
.col-6
અનુગામી કૉલમ નવી લાઇન સાથે ચાલુ રહે છે.
html
<div class="container">
  <div class="row">
    <div class="col-9">.col-9</div>
    <div class="col-4">.col-4<br>Since 9 + 4 = 13 &gt; 12, this 4-column-wide div gets wrapped onto a new line as one contiguous unit.</div>
    <div class="col-6">.col-6<br>Subsequent columns continue along the new line.</div>
  </div>
</div>

કૉલમ વિરામ

ફ્લેક્સબૉક્સમાં કૉલમને નવી લાઇનમાં તોડવા માટે નાના હેકની જરૂર છે: width: 100%તમે જ્યાં પણ તમારી કૉલમને નવી લાઇનમાં લપેટવા માંગતા હોવ ત્યાં એક ઘટક ઉમેરો. સામાન્ય રીતે આ બહુવિધ .rows સાથે પરિપૂર્ણ થાય છે, પરંતુ દરેક અમલીકરણ પદ્ધતિ આ માટે જવાબદાર હોઈ શકતી નથી.

.col-6 .col-sm-3
.col-6 .col-sm-3
.col-6 .col-sm-3
.col-6 .col-sm-3
html
<div class="container text-center">
  <div class="row">
    <div class="col-6 col-sm-3">.col-6 .col-sm-3</div>
    <div class="col-6 col-sm-3">.col-6 .col-sm-3</div>

    <!-- Force next columns to break to new line -->
    <div class="w-100"></div>

    <div class="col-6 col-sm-3">.col-6 .col-sm-3</div>
    <div class="col-6 col-sm-3">.col-6 .col-sm-3</div>
  </div>
</div>

તમે અમારી રિસ્પોન્સિવ ડિસ્પ્લે યુટિલિટીઝ સાથે ચોક્કસ બ્રેકપોઇન્ટ પર પણ આ વિરામ લાગુ કરી શકો છો .

.col-6 .col-sm-4
.col-6 .col-sm-4
.col-6 .col-sm-4
.col-6 .col-sm-4
html
<div class="container text-center">
  <div class="row">
    <div class="col-6 col-sm-4">.col-6 .col-sm-4</div>
    <div class="col-6 col-sm-4">.col-6 .col-sm-4</div>

    <!-- Force next columns to break to new line at md breakpoint and up -->
    <div class="w-100 d-none d-md-block"></div>

    <div class="col-6 col-sm-4">.col-6 .col-sm-4</div>
    <div class="col-6 col-sm-4">.col-6 .col-sm-4</div>
  </div>
</div>

પુનઃક્રમાંકન

વર્ગો ઓર્ડર કરો

તમારી સામગ્રીના દ્રશ્ય ક્રમને.order- નિયંત્રિત કરવા માટે વર્ગોનો ઉપયોગ કરો. આ વર્ગો પ્રતિભાવશીલ છે, તેથી તમે બ્રેકપોઇન્ટ દ્વારા સેટ કરી શકો છો (દા.ત., ). તમામ છ ગ્રીડ સ્તરો માટે સપોર્ટનો સમાવેશ થાય છે .order.order-1.order-md-215

DOM માં પ્રથમ, કોઈ ઓર્ડર લાગુ થયો નથી
DOM માં બીજા, મોટા ઓર્ડર સાથે
DOM માં ત્રીજું, 1 ના ઓર્ડર સાથે
html
<div class="container text-center">
  <div class="row">
    <div class="col">
      First in DOM, no order applied
    </div>
    <div class="col order-5">
      Second in DOM, with a larger order
    </div>
    <div class="col order-1">
      Third in DOM, with an order of 1
    </div>
  </div>
</div>

ત્યાં પ્રતિભાવશીલ .order-firstઅને .order-lastવર્ગો પણ છે જે અનુક્રમે અને , orderલાગુ કરીને તત્વને બદલે છે. આ વર્ગોને જરૂર મુજબ નંબરવાળા વર્ગો સાથે પણ મિશ્રિત કરી શકાય છે.order: -1order: 6.order-*

DOM માં પ્રથમ, છેલ્લે આદેશ આપ્યો
DOM માં બીજું, અવ્યવસ્થિત
DOM માં ત્રીજું, પ્રથમ આદેશ આપ્યો
html
<div class="container text-center">
  <div class="row">
    <div class="col order-last">
      First in DOM, ordered last
    </div>
    <div class="col">
      Second in DOM, unordered
    </div>
    <div class="col order-first">
      Third in DOM, ordered first
    </div>
  </div>
</div>

કૉલમ ઑફસેટિંગ

તમે ગ્રીડ કૉલમને બે રીતે ઑફસેટ કરી શકો છો: અમારા પ્રતિભાવશીલ .offset-ગ્રીડ વર્ગો અને અમારી માર્જિન ઉપયોગિતાઓ . ગ્રીડ વર્ગો કૉલમ સાથે મેળ ખાય છે જ્યારે માર્જિન ઝડપી લેઆઉટ માટે વધુ ઉપયોગી છે જ્યાં ઑફસેટની પહોળાઈ ચલ હોય છે.

ઑફસેટ વર્ગો

.offset-md-*વર્ગોનો ઉપયોગ કરીને કૉલમને જમણી તરફ ખસેડો . આ વર્ગો કૉલમ દ્વારા કૉલમના ડાબા માર્જિનમાં વધારો કરે છે *. ઉદાહરણ તરીકે, ચાર કૉલમ પર .offset-md-4ખસે છે..col-md-4

.col-md-4
.col-md-4 .offset-md-4
.col-md-3 .offset-md-3
.col-md-3 .offset-md-3
.col-md-6 .offset-md-3
html
<div class="container text-center">
  <div class="row">
    <div class="col-md-4">.col-md-4</div>
    <div class="col-md-4 offset-md-4">.col-md-4 .offset-md-4</div>
  </div>
  <div class="row">
    <div class="col-md-3 offset-md-3">.col-md-3 .offset-md-3</div>
    <div class="col-md-3 offset-md-3">.col-md-3 .offset-md-3</div>
  </div>
  <div class="row">
    <div class="col-md-6 offset-md-3">.col-md-6 .offset-md-3</div>
  </div>
</div>

રિસ્પોન્સિવ બ્રેકપોઇન્ટ્સ પર કૉલમ ક્લિયરિંગ ઉપરાંત, તમારે ઑફસેટ્સ ફરીથી સેટ કરવાની જરૂર પડી શકે છે. ગ્રીડના ઉદાહરણમાં આને ક્રિયામાં જુઓ .

.col-sm-5 .col-md-6
.col-sm-5 .offset-sm-2 .col-md-6 .offset-md-0
.col-sm-6 .col-md-5 .col-lg-6
.col-sm-6 .col-md-5 .offset-md-2 .col-lg-6 .offset-lg-0
html
<div class="container text-center">
  <div class="row">
    <div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div>
    <div class="col-sm-5 offset-sm-2 col-md-6 offset-md-0">.col-sm-5 .offset-sm-2 .col-md-6 .offset-md-0</div>
  </div>
  <div class="row">
    <div class="col-sm-6 col-md-5 col-lg-6">.col-sm-6 .col-md-5 .col-lg-6</div>
    <div class="col-sm-6 col-md-5 offset-md-2 col-lg-6 offset-lg-0">.col-sm-6 .col-md-5 .offset-md-2 .col-lg-6 .offset-lg-0</div>
  </div>
</div>

માર્જિન ઉપયોગિતાઓ

v4 માં ફ્લેક્સબોક્સ પર જવા સાથે, તમે માર્જિન યુટિલિટીઝનો ઉપયોગ કરી શકો છો જેમ કે .me-autoભાઈ-બહેનના કૉલમને એક બીજાથી દૂર કરવા માટે.

.col-md-4
.col-md-4 .ms-auto
.col-md-3 .ms-md-auto
.col-md-3 .ms-md-auto
.col-auto .me-auto
.col-auto
html
<div class="container text-center">
  <div class="row">
    <div class="col-md-4">.col-md-4</div>
    <div class="col-md-4 ms-auto">.col-md-4 .ms-auto</div>
  </div>
  <div class="row">
    <div class="col-md-3 ms-md-auto">.col-md-3 .ms-md-auto</div>
    <div class="col-md-3 ms-md-auto">.col-md-3 .ms-md-auto</div>
  </div>
  <div class="row">
    <div class="col-auto me-auto">.col-auto .me-auto</div>
    <div class="col-auto">.col-auto</div>
  </div>
</div>

એકલ કૉલમ વર્ગો

તત્વને ચોક્કસ પહોળાઈ આપવા માટે વર્ગોનો ઉપયોગ a ની .col-*બહાર પણ થઈ શકે છે. .rowજ્યારે પણ કૉલમ વર્ગોનો ઉપયોગ પંક્તિના બિન-પ્રત્યક્ષ બાળકો તરીકે કરવામાં આવે છે, ત્યારે પેડિંગ્સ અવગણવામાં આવે છે.

.col-3: 25% ની પહોળાઈ
.col-sm-9: sm બ્રેકપોઇન્ટ ઉપર 75% ની પહોળાઈ
html
<div class="col-3 bg-light p-3 border">
  .col-3: width of 25%
</div>
<div class="col-sm-9 bg-light p-3 border">
  .col-sm-9: width of 75% above sm breakpoint
</div>

રિસ્પોન્સિવ ફ્લોટેડ ઈમેજીસ બનાવવા માટે યુટિલિટીઝ સાથે વર્ગોનો ઉપયોગ કરી શકાય છે. .clearfixજો ટેક્સ્ટ ટૂંકો હોય તો ફ્લોટ સાફ કરવા માટે સામગ્રીને રેપરમાં લપેટી લેવાની ખાતરી કરો .

Placeholder Responsive floated image

પ્લેસહોલ્ડર ટેક્સ્ટનો ફકરો. અમે તેનો ઉપયોગ અહીં ક્લિયરફિક્સ ક્લાસનો ઉપયોગ બતાવવા માટે કરી રહ્યા છીએ. સ્તંભો ફ્લોટેડ ઈમેજ સાથે અહીં કેવી રીતે ક્રિયાપ્રતિક્રિયા કરે છે તે દર્શાવવા માટે અમે અહીં કેટલાક અર્થહીન શબ્દસમૂહો ઉમેરી રહ્યા છીએ.

જેમ તમે જોઈ શકો છો કે ફકરાઓ તરતી છબીની આસપાસ સુંદર રીતે લપેટી છે. હવે કલ્પના કરો કે આ કંટાળાજનક પ્લેસહોલ્ડર ટેક્સ્ટને બદલે અહીં કેટલીક વાસ્તવિક સામગ્રી સાથે કેવી રીતે દેખાશે, જે ચાલુ રહે છે, પરંતુ વાસ્તવમાં કોઈ મૂર્ત માહિતી આપતું નથી. તે ખાલી જગ્યા લે છે અને ખરેખર વાંચવું જોઈએ નહીં.

અને તેમ છતાં, તમે અહીં છો, હજુ પણ આ પ્લેસહોલ્ડર ટેક્સ્ટને વાંચવામાં, થોડી વધુ આંતરદૃષ્ટિની આશામાં, અથવા સામગ્રીના કેટલાક છુપાયેલા ઇસ્ટર એગની આશામાં છો. એક મજાક, કદાચ. કમનસીબે, અહીં એવું કંઈ નથી.

html
<div class="clearfix">
  <img src="..." class="col-md-6 float-md-end mb-3 ms-md-3" alt="...">

  <p>
    A paragraph of placeholder text. We're using it here to show the use of the clearfix class. We're adding quite a few meaningless phrases here to demonstrate how the columns interact here with the floated image.
  </p>

  <p>
    As you can see the paragraphs gracefully wrap around the floated image. Now imagine how this would look with some actual content in here, rather than just this boring placeholder text that goes on and on, but actually conveys no tangible information at. It simply takes up space and should not really be read.
  </p>

  <p>
    And yet, here you are, still persevering in reading this placeholder text, hoping for some more insights, or some hidden easter egg of content. A joke, perhaps. Unfortunately, there's none of that here.
  </p>
</div>