I've problem centering my ::after element. Can you guys please help me? There is my code
button{
position: relative;
}
button::after{
content: "Check answer";
position: absolute;
min-width: 100px;
top: 20px;
padding: 10px 15px;
border-radius: 4px;
background: #575757;
color: #fff;
display: block;
}
<button>Check answer</button>