in English
தேர்ந்தெடு
<select>
உறுப்பின் ஆரம்ப தோற்றத்தை மாற்றும் தனிப்பயன் CSS மூலம் நேட்டிவ் களை தனிப்பயனாக்குங்கள்.
இந்தப் பக்கத்தில்
இயல்புநிலை
தனிப்பயன் பாணிகளைத் தூண்டுவதற்கு, தனிப்பயன் <select>
மெனுக்களுக்கு தனிப்பயன் வகுப்பு மட்டுமே தேவை . .form-select
தனிப்பயன் பாணிகள் 'இன் ஆரம்ப தோற்றத்திற்கு மட்டுப்படுத்தப்பட்டுள்ளன மற்றும் உலாவி வரம்புகள் காரணமாக s ஐ <select>
மாற்ற முடியாது .<option>
<select class="form-select" aria-label="Default select example">
<option selected>Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
அளவிடுதல்
எங்கள் ஒத்த அளவிலான உரை உள்ளீடுகளுடன் பொருந்தக்கூடிய சிறிய மற்றும் பெரிய தனிப்பயன் தேர்வுகளிலிருந்தும் நீங்கள் தேர்வு செய்யலாம்.
<select class="form-select form-select-lg mb-3" aria-label=".form-select-lg example">
<option selected>Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<select class="form-select form-select-sm" aria-label=".form-select-sm example">
<option selected>Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
பண்பும் multiple
ஆதரிக்கப்படுகிறது:
<select class="form-select" multiple aria-label="multiple select example">
<option selected>Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
size
பண்பு போல் :
<select class="form-select" size="3" aria-label="size 3 select example">
<option selected>Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
முடக்கப்பட்டது
தேர்ந்தெடுக்கப்பட்டவற்றில் disabled
பூலியன் பண்புக்கூறைச் சேர்ப்பதன் மூலம் அது சாம்பல் நிற தோற்றத்தைக் கொடுக்கவும், சுட்டிக்காட்டி நிகழ்வுகளை அகற்றவும்.
<select class="form-select" aria-label="Disabled select example" disabled>
<option selected>Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
சாஸ்
மாறிகள்
$form-select-padding-y: $input-padding-y;
$form-select-padding-x: $input-padding-x;
$form-select-font-family: $input-font-family;
$form-select-font-size: $input-font-size;
$form-select-indicator-padding: $form-select-padding-x * 3; // Extra padding for background-image
$form-select-font-weight: $input-font-weight;
$form-select-line-height: $input-line-height;
$form-select-color: $input-color;
$form-select-bg: $input-bg;
$form-select-disabled-color: null;
$form-select-disabled-bg: $gray-200;
$form-select-disabled-border-color: $input-disabled-border-color;
$form-select-bg-position: right $form-select-padding-x center;
$form-select-bg-size: 16px 12px; // In pixels because image dimensions
$form-select-indicator-color: $gray-800;
$form-select-indicator: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/></svg>");
$form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding;
$form-select-feedback-icon-position: center right $form-select-indicator-padding;
$form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half;
$form-select-border-width: $input-border-width;
$form-select-border-color: $input-border-color;
$form-select-border-radius: $input-border-radius;
$form-select-box-shadow: $box-shadow-inset;
$form-select-focus-border-color: $input-focus-border-color;
$form-select-focus-width: $input-focus-width;
$form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color;
$form-select-padding-y-sm: $input-padding-y-sm;
$form-select-padding-x-sm: $input-padding-x-sm;
$form-select-font-size-sm: $input-font-size-sm;
$form-select-border-radius-sm: $input-border-radius-sm;
$form-select-padding-y-lg: $input-padding-y-lg;
$form-select-padding-x-lg: $input-padding-x-lg;
$form-select-font-size-lg: $input-font-size-lg;
$form-select-border-radius-lg: $input-border-radius-lg;
$form-select-transition: $input-transition;