I've implemented a split button dropdown feature in a Bootstrap 4.0 Beta project but I'm facing an issue with the gap between the split components within the "btn-group".
https://i.sstatic.net/DgjYu.png
My goal is to make sure that the left side of the "btn-group" aligns perfectly with the right side.
I've experimented with tweaking margins, padding, and other CSS properties, but haven't been able to achieve a seamless zero-space alignment. Here's a snippet of the CSS code I've worked on:
.btn-group > .dropdown-toggle {
margin-left: 0;
padding-left: 0;
}
Here's a sample of the code structure:
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<!-- Popper -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<!-- Latest compiled and minified Bootstrap JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
body {
padding-top: 66px
}
/* Additional CSS styles */
... (CSS code continued)