coliff / bootstrap-ie11

Internet Explorer 11 compatibility solution for Bootstrap 5

Home Page:https://coliff.github.io/bootstrap-ie11/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Radio Buttons aren't perfectly centered

coliff opened this issue · comments

Can be fixed by adjusting the position of the SVG background:

.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4.2 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

This solution is less code:

.form-check .form-check-input {
  margin-top: 0.27em;
  margin-left: -1.4em;
}