Encountering an issue with input group in IE while using bootstrap v4, working fine in Chrome. Specifically using IE 11
Here is my plunkr:
Chrome display:
https://i.sstatic.net/yXtEW.png
IE display:
https://i.sstatic.net/WiRzQ.png
Discovered that the form-control has padding: .375rem .75rem;
.form-control {
display: block;
width: 100%;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
color: #55595c;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: .25rem;}
Increasing bottom padding resolves the issue in IE but causes a problem in Chrome.
In search of a solution that will work consistently across all browsers.
Thank you