Does anyone know why there is a difference between text-align: center and , text-align:-webkit-center ? For example if you have :
Titl
From the Mozilla Developer Network:
Both WebKit and Gecko support a prefixed version of left, center, and right, that applies not only to inline content but also to block elements. This is used to implement the legacy
align
attributes ontable
elements and. Do not use these on production Web sites.
— MDN's documentation on text-align.