Link to home
Start Free TrialLog in
Avatar of EwS
EwS

asked on

text-align:center doesn't work in Safari

This code works (=the text in the text box is centered) in IE, Mozilla, Netscape, Opera, but not Safari. I don't see any reason why it wouldn't. Maybe somebody had this problem too. Thanks!

<html>
<body>
<input type="text" style="text-align: center" value="test" />
</body>
</html>
Avatar of seanpowell
seanpowell
Flag of Canada image

Well, the simple answer here is that it's not supported.

Input elements in safari are very closely connected with the MAC OS, and there's not much you can do except change the width and height.

Sorry,
Sean
Avatar of EwS
EwS

ASKER

Are you positive about it? I heard a different opinion...
ASKER CERTIFIED SOLUTION
Avatar of seanpowell
seanpowell
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of EwS

ASKER

Thank you!!