in English
इनपुट समूह के बा
टेक्स्टुअल इनपुट, कस्टम सिलेक्ट, आ कस्टम फाइल इनपुट के दुनो ओर टेक्स्ट, बटन, या बटन ग्रुप जोड़ के फॉर्म कंट्रोल के आसानी से बढ़ाईं।
बेसिक उदाहरण बा
कवनो इनपुट के दुनो ओर एगो ऐड-ऑन चाहे बटन रखीं। रउआँ कवनो इनपुट के दुनो ओर भी एकरा के रख सकत बानी। <label>
s के इनपुट समूह के बाहर रखे के याद रखीं ।
कॉपी कइल जाव
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<span class= "input-group-text" id= "basic-addon1" > @</span>
</div>
<input type= "text" class= "form-control" placeholder= "Username" aria-label= "Username" aria-describedby= "basic-addon1" >
</div>
<div class= "input-group mb-3" >
<input type= "text" class= "form-control" placeholder= "Recipient's username" aria-label= "Recipient's username" aria-describedby= "basic-addon2" >
<div class= "input-group-append" >
<span class= "input-group-text" id= "basic-addon2" > @example.com</span>
</div>
</div>
<label for= "basic-url" > Your vanity URL</label>
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<span class= "input-group-text" id= "basic-addon3" > https://example.com/users/</span>
</div>
<input type= "text" class= "form-control" id= "basic-url" aria-describedby= "basic-addon3" >
</div>
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<span class= "input-group-text" > $</span>
</div>
<input type= "text" class= "form-control" aria-label= "Amount (to the nearest dollar)" >
<div class= "input-group-append" >
<span class= "input-group-text" > .00</span>
</div>
</div>
<div class= "input-group" >
<div class= "input-group-prepend" >
<span class= "input-group-text" > With textarea</span>
</div>
<textarea class= "form-control" aria-label= "With textarea" ></textarea>
</div>
लपेट के बा
इनपुट समूह डिफ़ॉल्ट रूप से माध्यम से लपेट लेलें flex-wrap: wrap
ताकि कवनो इनपुट समूह के भीतर कस्टम फॉर्म फील्ड सत्यापन के समायोजित कइल जा सके। रउआँ एकरा के .flex-nowrap
.
कॉपी कइल जाव
<div class= "input-group flex-nowrap" >
<div class= "input-group-prepend" >
<span class= "input-group-text" id= "addon-wrapping" > @</span>
</div>
<input type= "text" class= "form-control" placeholder= "Username" aria-label= "Username" aria-describedby= "addon-wrapping" >
</div>
साइजिंग के बा
रिलेटिव फॉर्म साइजिंग क्लास सभ के .input-group
खुद में जोड़ दीं आ भीतर के सामग्री सभ के साइज स्वचालित रूप से बदल जाई-हर तत्व पर फॉर्म कंट्रोल साइज क्लास सभ के दोहरावे के जरूरत नइखे।
अलग-अलग इनपुट समूह तत्वन पर साइजिंग समर्थित नइखे।
कॉपी कइल जाव
<div class= "input-group input-group-sm mb-3" >
<div class= "input-group-prepend" >
<span class= "input-group-text" id= "inputGroup-sizing-sm" > Small</span>
</div>
<input type= "text" class= "form-control" aria-label= "Sizing example input" aria-describedby= "inputGroup-sizing-sm" >
</div>
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<span class= "input-group-text" id= "inputGroup-sizing-default" > Default</span>
</div>
<input type= "text" class= "form-control" aria-label= "Sizing example input" aria-describedby= "inputGroup-sizing-default" >
</div>
<div class= "input-group input-group-lg" >
<div class= "input-group-prepend" >
<span class= "input-group-text" id= "inputGroup-sizing-lg" > Large</span>
</div>
<input type= "text" class= "form-control" aria-label= "Sizing example input" aria-describedby= "inputGroup-sizing-lg" >
</div>
चेकबॉक्स आ रेडियो के बारे में बतावल गइल बा
कवनो चेकबॉक्स भा रेडियो विकल्प के कवनो इनपुट समूह के एडॉन के भीतर टेक्स्ट के जगह रखीं।
कॉपी कइल जाव
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<div class= "input-group-text" >
<input type= "checkbox" aria-label= "Checkbox for following text input" >
</div>
</div>
<input type= "text" class= "form-control" aria-label= "Text input with checkbox" >
</div>
<div class= "input-group" >
<div class= "input-group-prepend" >
<div class= "input-group-text" >
<input type= "radio" aria-label= "Radio button for following text input" >
</div>
</div>
<input type= "text" class= "form-control" aria-label= "Text input with radio button" >
</div>
जबकि कई गो <input>
s के दृश्य रूप से समर्थित कइल जाला, सत्यापन शैली खाली एकही वाला इनपुट समूह सभ खातिर उपलब्ध बा <input>
।
कॉपी कइल जाव
<div class= "input-group" >
<div class= "input-group-prepend" >
<span class= "input-group-text" > First and last name</span>
</div>
<input type= "text" aria-label= "First name" class= "form-control" >
<input type= "text" aria-label= "Last name" class= "form-control" >
</div>
कई गो एडॉन होला
कई गो ऐड-ऑन सभ के सपोर्ट कइल जाला आ चेकबॉक्स आ रेडियो इनपुट संस्करण सभ के साथ मिलावल जा सके ला।
कॉपी कइल जाव
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<span class= "input-group-text" > $</span>
<span class= "input-group-text" > 0.00</span>
</div>
<input type= "text" class= "form-control" aria-label= "Dollar amount (with dot and two decimal places)" >
</div>
<div class= "input-group" >
<input type= "text" class= "form-control" aria-label= "Dollar amount (with dot and two decimal places)" >
<div class= "input-group-append" >
<span class= "input-group-text" > $</span>
<span class= "input-group-text" > 0.00</span>
</div>
</div>
कॉपी कइल जाव
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<button class= "btn btn-outline-secondary" type= "button" id= "button-addon1" > Button</button>
</div>
<input type= "text" class= "form-control" placeholder= "" aria-label= "Example text with button addon" aria-describedby= "button-addon1" >
</div>
<div class= "input-group mb-3" >
<input type= "text" class= "form-control" placeholder= "Recipient's username" aria-label= "Recipient's username" aria-describedby= "button-addon2" >
<div class= "input-group-append" >
<button class= "btn btn-outline-secondary" type= "button" id= "button-addon2" > Button</button>
</div>
</div>
<div class= "input-group mb-3" >
<div class= "input-group-prepend" id= "button-addon3" >
<button class= "btn btn-outline-secondary" type= "button" > Button</button>
<button class= "btn btn-outline-secondary" type= "button" > Button</button>
</div>
<input type= "text" class= "form-control" placeholder= "" aria-label= "Example text with two button addons" aria-describedby= "button-addon3" >
</div>
<div class= "input-group" >
<input type= "text" class= "form-control" placeholder= "Recipient's username" aria-label= "Recipient's username with two button addons" aria-describedby= "button-addon4" >
<div class= "input-group-append" id= "button-addon4" >
<button class= "btn btn-outline-secondary" type= "button" > Button</button>
<button class= "btn btn-outline-secondary" type= "button" > Button</button>
</div>
</div>
कॉपी कइल जाव
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<button class= "btn btn-outline-secondary dropdown-toggle" type= "button" data-toggle= "dropdown" aria-haspopup= "true" aria-expanded= "false" > Dropdown</button>
<div class= "dropdown-menu" >
<a class= "dropdown-item" href= "#" > Action</a>
<a class= "dropdown-item" href= "#" > Another action</a>
<a class= "dropdown-item" href= "#" > Something else here</a>
<div role= "separator" class= "dropdown-divider" ></div>
<a class= "dropdown-item" href= "#" > Separated link</a>
</div>
</div>
<input type= "text" class= "form-control" aria-label= "Text input with dropdown button" >
</div>
<div class= "input-group" >
<input type= "text" class= "form-control" aria-label= "Text input with dropdown button" >
<div class= "input-group-append" >
<button class= "btn btn-outline-secondary dropdown-toggle" type= "button" data-toggle= "dropdown" aria-haspopup= "true" aria-expanded= "false" > Dropdown</button>
<div class= "dropdown-menu" >
<a class= "dropdown-item" href= "#" > Action</a>
<a class= "dropdown-item" href= "#" > Another action</a>
<a class= "dropdown-item" href= "#" > Something else here</a>
<div role= "separator" class= "dropdown-divider" ></div>
<a class= "dropdown-item" href= "#" > Separated link</a>
</div>
</div>
</div>
कॉपी कइल जाव
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<button type= "button" class= "btn btn-outline-secondary" > Action</button>
<button type= "button" class= "btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-toggle= "dropdown" aria-haspopup= "true" aria-expanded= "false" >
<span class= "sr-only" > Toggle Dropdown</span>
</button>
<div class= "dropdown-menu" >
<a class= "dropdown-item" href= "#" > Action</a>
<a class= "dropdown-item" href= "#" > Another action</a>
<a class= "dropdown-item" href= "#" > Something else here</a>
<div role= "separator" class= "dropdown-divider" ></div>
<a class= "dropdown-item" href= "#" > Separated link</a>
</div>
</div>
<input type= "text" class= "form-control" aria-label= "Text input with segmented dropdown button" >
</div>
<div class= "input-group" >
<input type= "text" class= "form-control" aria-label= "Text input with segmented dropdown button" >
<div class= "input-group-append" >
<button type= "button" class= "btn btn-outline-secondary" > Action</button>
<button type= "button" class= "btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-toggle= "dropdown" aria-haspopup= "true" aria-expanded= "false" >
<span class= "sr-only" > Toggle Dropdown</span>
</button>
<div class= "dropdown-menu" >
<a class= "dropdown-item" href= "#" > Action</a>
<a class= "dropdown-item" href= "#" > Another action</a>
<a class= "dropdown-item" href= "#" > Something else here</a>
<div role= "separator" class= "dropdown-divider" ></div>
<a class= "dropdown-item" href= "#" > Separated link</a>
</div>
</div>
</div>
इनपुट समूह सभ में कस्टम चयन आ कस्टम फाइल इनपुट सभ खातिर सपोर्ट सामिल बा। इनहन के ब्राउजर डिफ़ॉल्ट संस्करण समर्थित नइखे।
कस्टम चुने के बा
कॉपी कइल जाव
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<label class= "input-group-text" for= "inputGroupSelect01" > Options</label>
</div>
<select class= "custom-select" id= "inputGroupSelect01" >
<option selected > Choose...</option>
<option value= "1" > One</option>
<option value= "2" > Two</option>
<option value= "3" > Three</option>
</select>
</div>
<div class= "input-group mb-3" >
<select class= "custom-select" id= "inputGroupSelect02" >
<option selected > Choose...</option>
<option value= "1" > One</option>
<option value= "2" > Two</option>
<option value= "3" > Three</option>
</select>
<div class= "input-group-append" >
<label class= "input-group-text" for= "inputGroupSelect02" > Options</label>
</div>
</div>
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<button class= "btn btn-outline-secondary" type= "button" > Button</button>
</div>
<select class= "custom-select" id= "inputGroupSelect03" aria-label= "Example select with button addon" >
<option selected > Choose...</option>
<option value= "1" > One</option>
<option value= "2" > Two</option>
<option value= "3" > Three</option>
</select>
</div>
<div class= "input-group" >
<select class= "custom-select" id= "inputGroupSelect04" aria-label= "Example select with button addon" >
<option selected > Choose...</option>
<option value= "1" > One</option>
<option value= "2" > Two</option>
<option value= "3" > Three</option>
</select>
<div class= "input-group-append" >
<button class= "btn btn-outline-secondary" type= "button" > Button</button>
</div>
</div>
कॉपी कइल जाव
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<span class= "input-group-text" id= "inputGroupFileAddon01" > Upload</span>
</div>
<div class= "custom-file" >
<input type= "file" class= "custom-file-input" id= "inputGroupFile01" aria-describedby= "inputGroupFileAddon01" >
<label class= "custom-file-label" for= "inputGroupFile01" > Choose file</label>
</div>
</div>
<div class= "input-group mb-3" >
<div class= "custom-file" >
<input type= "file" class= "custom-file-input" id= "inputGroupFile02" >
<label class= "custom-file-label" for= "inputGroupFile02" aria-describedby= "inputGroupFileAddon02" > Choose file</label>
</div>
<div class= "input-group-append" >
<span class= "input-group-text" id= "inputGroupFileAddon02" > Upload</span>
</div>
</div>
<div class= "input-group mb-3" >
<div class= "input-group-prepend" >
<button class= "btn btn-outline-secondary" type= "button" id= "inputGroupFileAddon03" > Button</button>
</div>
<div class= "custom-file" >
<input type= "file" class= "custom-file-input" id= "inputGroupFile03" aria-describedby= "inputGroupFileAddon03" >
<label class= "custom-file-label" for= "inputGroupFile03" > Choose file</label>
</div>
</div>
<div class= "input-group" >
<div class= "custom-file" >
<input type= "file" class= "custom-file-input" id= "inputGroupFile04" aria-describedby= "inputGroupFileAddon04" >
<label class= "custom-file-label" for= "inputGroupFile04" > Choose file</label>
</div>
<div class= "input-group-append" >
<button class= "btn btn-outline-secondary" type= "button" id= "inputGroupFileAddon04" > Button</button>
</div>
</div>
सुलभता के क्षमता बा
सुनिश्चित करीं कि सभ फॉर्म कंट्रोल के एगो उचित सुलभ नाम होखे ताकि सहायक तकनीक के उपयोगकर्ता लोग के ओकर उद्देश्य बतावल जा सके। एकरा के हासिल करे के सभसे सरल तरीका ई बा कि कौनों <label>
तत्व के इस्तेमाल कइल जाय, या-बटन सभ के मामिला में- <button>...</button>
सामग्री के हिस्सा के रूप में पर्याप्त रूप से वर्णनात्मक पाठ के सामिल कइल जाय।
अइसन स्थिति सभ खातिर जहाँ कौनों दृश्यमान भा उचित पाठ सामग्री के सामिल कइल संभव ना होखे <label>
, फिर भी सुलभ नाँव देवे के वैकल्पिक तरीका बाड़ें, जइसे कि:
<label>
.visually-hidden
वर्ग के उपयोग करके छिपल तत्व
कवनो मौजूदा तत्व के ओर इशारा कइल जवन इस्तेमाल करत लेबल के रूप में काम कर सकेलाaria-labelledby
एगो title
विशेषता उपलब्ध करावल जा रहल बा
इस्तेमाल करत कवनो तत्व पर सुलभ नाम के स्पष्ट रूप से सेट करींaria-label
अगर इनहन में से कौनों भी मौजूद ना होखे तब सहायक टेक्नालॉजी सभ पर आ तत्व placeholder
सभ खातिर सुलभ नाँव खातिर फॉलबैक के रूप में बिसेसता के इस्तेमाल के सहारा ले सके लीं। एह खंड में दिहल उदाहरण कुछ सुझावल, केस-विशिष्ट दृष्टिकोण देला।<input>
<textarea>
जबकि दृश्य रूप से छिपल सामग्री ( .sr-only
, aria-label
, आ इहाँ तक कि placeholder
सामग्री, जे एक बेर कौनों फॉर्म फील्ड में सामग्री होखे के बाद गायब हो जाला) के इस्तेमाल से सहायक टेक्नोलॉजी के प्रयोगकर्ता लोग के फायदा होखी, कुछ खास प्रयोगकर्ता लोग खातिर देखाई देवे वाला लेबल पाठ के कमी अबहिन ले समस्या पैदा क सके ला। आमतौर पर कौनों ना कौनों रूप के दृश्यमान लेबल सभसे नीक तरीका होला, सुलभता आ उपयोगिता दुनों खातिर।