Currently, I am utilizing the Semantic UI dropdown and am attempting to adjust the border-width.
The issue at hand is as follows:
https://i.sstatic.net/r8CzC.png The borders of the dropdown and menu do not align properly. How can this be resolved?
To replicate the problem you can visit this page:
Simply add a border-width: 2px
to the div with classes
ui dropdown selection active visible
, then apply the same property to the child div with classes menu transition visible
.
Since the menu has a different size than the dropdown, I attempted to use width: calc(100% + 2px);
but this solution did not work effectively.