问题
This is how I use it.
HTML
<h1>text</h1>
CSS
h1 {
text-align: center;
}
In Chrome everything works good, but aligned to the left in Safari. why that happens in Safari?
回答1:
For Safari
text-align: -webkit-center;
来源:https://stackoverflow.com/questions/35679627/text-aligncenter-works-in-chrome-doesnt-work-in-safari