在 Windows/Mac/Android 或任何操作系统中查看我的网站时,我的网站会按照我的意愿显示。但在 iOS 中(在 iPhone、iPod Touch、iPad 等上)它会使按钮内的文本看起来很奇怪。
![][1]
在这里,您可以看到问题发生在 iPad 上。带有“男”的按钮显示正确,但“女”按钮显示错误。(女性性别标志在顶部)
这是两个按钮的代码:
<button class="choose">♂ Male</button>
<button class="choose">♀ Female</button>
CSS 代码:
// body code for the whole document:
body{
font-size:14px;
font-family:"Lucida Grande", "Lucida Sans Unicode" Tahoma, Verdana, Arial, sans-serif;
-webkit-font-smoothing:subpixel-antialiased;
text-align:center;
margin:0px;
padding:0px;
}
// code just for the two buttons:
.choose{
font-size:15px;
height:40px;
width:100px;
}
有谁知道如何解决这一问题?