I am new to CSS and have to style a <span>
which is this situation:
<div class="ui-select-container ui-select-bootstrap dropdown ng-valid ng-touched ng-dirty ng-valid-parse">
<div class="ui-select-match">
<span class="btn btn-default form-control ui-select-toggle"></span>
</div>
</div>
How to target the <span>
to change its width? I tried this:
div .ui-select-container > span .class ui-select-toggle{
width: 60%;
}
Please let me know where I am going wrong.