user5697699
user5697699

Reputation:

Why Bootstrap's select list is not working in google chrome's developer tool mobile view (responsive) option ? Is this BUG or anything else?

I am developing an application, in that application i am using select list with Bootstrap's class. My problem is when i test it using chrome's developer tool (f5) and switch it to small devices (for check is this responsive or not) but it does not work as expected! Is this BS bug or chrome's bug? My code:

 <div class="form-group">
   <select class="form-control" name="access" id="access">
     <option value="1" @view>View Only</option>
     <option value="0" @full>Full</option>
   </select>
 </div>

Snap Shot: Application snapshot

Upvotes: 2

Views: 906

Answers (1)

Andrew Wayne
Andrew Wayne

Reputation: 36

I have the same issue, but it's Chrome's bug, when I try to select one option from the list, the background becomes black, and my select changes its place, I tested it in Edge and works perfectly, my english is not too good, I hope help you

Upvotes: 2

Related Questions