-1

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>
Coral Kashri
  • 3,436
  • 2
  • 10
  • 22

2 Answers2

0

Centering horizontally i suppose, try

button::after{
 content: "Check answer";
 position: absolute;
 min-width: 100px;
 top: 20px;
 padding: 10px 15px;
 border-radius: 4px;
 background: #575757;
 color: #fff;
 display: block;
 /* this */
 left:50%;
 transform: translateX(-50%);
 /***/
}
Gabbr Issimo
  • 111
  • 9
0

If I understood you right:

button {
  min-width: 100px;
  top: 20px;
  padding: 10px 15px;
  border-radius: 4px;
  background: #575757;
  color: #fff;
  display: block;
}

button::after {
  content: "Check answer";
}
<button></button>
Coral Kashri
  • 3,436
  • 2
  • 10
  • 22