div {
display: table-cell;
vertical-align: middle;
height: 300px; width: 300px;
background-color: #eee;
text-align: center;
}
Один из самых изящных вариантов для страницы: body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
@keyframes move {
0% {
transform: translateY(+10px);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(+10px);
}
}
button {
display: flex;
color: #ff0000;
font-size: 100px;
font-family: Unbounded, sans-serif;
padding: 1vw;
border: none;
background: none;
cursor: pointer;
justify-content: center;
animation: move 2s infinite;
}
</style>
<button>ТЕКСТ</button>