Look at this fiddle: http://jsfiddle.net/v9V3f/
I try to center placeholder in my input with such css rule:
input::-webkit-input-placeholder {
text-align: center;
}
This css works correctly in Chrome but in Safari (Windows 7) input placeholder aligns to left. I tried doing things with relative and absolute positions, margins - nothing seems to work. So, how can I fix it?