-1

I used some boxes in the website below with the title Products.I want to text vertically and horizontally be in the center in the boxes (Square).Already tried:

display:table-cell; 
vertical-align: middle;

but nothing happens at all. what should i do?

website: http://www.titanotrade.com.tr/

  • 1
    Does this answer your question? [CSS center text (horizontally and vertically) inside a div block](https://stackoverflow.com/questions/5703552/css-center-text-horizontally-and-vertically-inside-a-div-block) – sanoj lawrence May 30 '20 at 13:42

1 Answers1

-1

Use the line-height property to adjust the position of the text in your boxes e.g.

.title-product a {
    line-height: 270px;
}
fraggley
  • 1,215
  • 2
  • 9
  • 19