I have the following HTML and CSS code, but I am having issues getting the dropdown to display inline.
.project Type{
display: inline-block;
}
<form class="smart-form">
<div class="row">
<div class="col col-sm-6 col-md-2 col-lg-2">
<label class="project Type" >Project Type</label>
<label class="project Type" >
<select type="text" class="padding-5">
<option *ngFor="let t of epmodel.ProjectType" value="{{t.id}}">{{t.type}}</option>
</select>
</label>
</div>
</div>
</form>