在 Mozilla 中,文本是这样排列的
__________
| |
| LINK |
|__________|
但在 Safari 中它看起来像这样
__________
| LINK |
| |
|__________|
代码:
.nav ul{
text-align: center;
margin:0; padding:0;
}
.nav ul li{
display: inline;
text-align: center;
}
.nav ul li a{
font-size: 20pt;
display: inline-block;
font-family: Neou-thin, "Courier New";
text-decoration: none;
width: 145px;
color: black;
background-color: white;
height: auto;
text-align: center;
vertical-align: middle;
}
非常感谢您对此的任何帮助!我只希望文本在块中居中。