I'm trying to center multiple spans in one line, nut it doesn't work for me. They always center align one beneath each other. I'd really appreciate some help. Here's the code:
body {
background-color: lightblue;
}
span {
top: 0;
transition: 0.1s ease-in;
position: relative;
}
span:hover {
color: orange;
top: -10px;
}
<h1>
<span>H</span><span>e</span><span>l</span><span>l</span><span>o</span>
</h1>