I have a question: How can I do the buttons to the very edge of the blue border while keeping the margin between the buttons? How to delete margin from right and bottom. I use flexbox and it is work fine but I don't know how to delete this margin. I would like delete margin which I marked in green,
.container {
width: 80%;
border: 1px solid blue;
display: flex;
flex-wrap: wrap;
}
button {
margin-right: 2em;
margin-bottom: 2em;
}
<div class="container">
<button>Text</button>
<button>Text</button>
<button>Text</button>
<button>Text</button>
<button>Text</button>
<button>Text</button>
<button>Text</button>
<button>Text</button>
<button>Text</button>
<button>Text</button>
<button>Text</button>
</div>