This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.select2-container--default .select2-selection--single .select2-selection__arrow { | |
margin-top: 33px !important; | |
} | |
.select2-container--open { | |
margin-top: -32px !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In Html | |
<select id="state_id" data-child="district_id"> | |
<option value="">-- Select State --</option> | |
<option value="1">State A</option> | |
<option value="2">State B</option> | |
</select> | |
<select id="district_id" data-child="township_id"> | |
<option value="">-- Select District --</option> |