Hi there,
I made a short video to explain my issue:
I have some text in the video ‘specialis felhasznalas’ which has a very big line height. Well not line height, because changing it does not work. Not margin or padding either. What can cause the space between the lines?
Here’s my entire css that is connected to this part:
ul.category {
display: flex;
width: 100%;
justify-content: center;
flex-wrap: wrap;
}
li.categoryli {
margin: 15px;
width: 10%;
text-align: center;
padding: 0.5em 1.5em;
background-color: #2db391;
color: white;
border-radius: 100px;
}
li.categoryli:hover {
background: #2b3233;
transition: 0.5s;
}
li.categoryli a {
color: white;
font-size: 70%;
line-height: 1;
}
Thanks for any tips in advance!