In the Bootstrap template, I want the corner of <select class="form-control"> to be square.

Asked 2 years ago, Updated 2 years ago, 120 views

<select class="form-control" style="border-radius:0!important;">

specified.

On the Mac Firefox, it became square, but on the Mac Chrome, it remained square and remained unchanged.

Please tell me how and who knows.
Thank you for your cooperation.

html css bootstrap

2022-09-30 21:13

1 Answers

Specify -webkit-appearance: none;.

<select class="form-control" style="border-radius:0!important;-webkit-appearance:none;">


2022-09-30 21:13

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.