gpt4 book ai didi

css - chrome 和 firefox 之间的字体字距调整

转载 作者:行者123 更新时间:2023-11-28 13:27:52 26 4
gpt4 key购买 nike

我正在制作一个带有自定义字体的菜单,在 chrome(和 safari)中,它的间距正是我想要的。

http://american-motorsports.net/2012/

当我在 firefox 中查看它时,字体的字距调整有点不同,导致最右边的菜单项上有一点黑色间隙。我可以在 FABRICATION

中看到 FA 之间的区别

HTML 现在非常简单:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="resources/css/reset.css" />
<link rel="stylesheet" href="resources/css/main.css" />
<title><?php echo date('M d, Y') . ' | '; ?>American Motorsports - Off-Road Fabrication</title>
</head>
<body>
<div id="wrap">
<div id="header">
<div id="logo">
<img src="resources/images/logo.png" width="291" height="150" alt="American Motorsports - Off-Road Fabrication" />
</div>
<div id="menu">
<a href="#"><span class="item">HOME</span></a><a href="#"><span class="item">SUSPENSION</span></a><a href="#"><span class="item">FABRICATION</span></a><a href="#"><span class="item">PROJECTS</span></a><a href="#"><span class="item">MEDIA</span></a><a href="#"><span class="item">CONTACT</span></a>
</div>
</div>
<div id="main"></div>
</div>
</body>
</html>

到目前为止,CSS 由这些组成

@font-face {  
font-family: bebas;
src: url("../fonts/bebas.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}

body {
font-size: 14px;
color: #ccc;
line-height: 20px;
margin: 0;
padding: 0;
background: url("../images/bg.png") #202020;
}

#wrap {
background: url("../images/bg_main.jpg") no-repeat center top;
min-height:800px;
}

#header {
border-top: 5px solid #3a3a3a;
height:150px;
width:970px;
background-color:#000000;
margin: 50px auto;
}

#logo {
width:324px;
height:179px;
background-color:#121212;
border-top: 5px solid #3a3a3a;
border-bottom: 5px solid #ffffff;
margin-top:-22px;
float:left;
}

#logo img {
margin-left:13px;
margin-top:17px;
}

#menu {
width:646px;
height:150px;
float:right;
margin:0;
padding:0;
}

#menu a {
margin:0;
padding:0;
}

.item {
font-family:bebas;
font-size:18px;
height:150px;
display:inline-block;
text-align:center;
line-height:8em;
color:#fff;
cursor:pointer;
padding-left:20px;
padding-right:20px;
margin:0;
text-shadow: 0 3px 3px #111;
}

.item:hover {
background: -moz-linear-gradient(top, #3a3a3a 0%, #101010 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3a3a3a), color-stop(100%,#101010));
background: -webkit-linear-gradient(top, #3a3a3a 0%,#101010 100%);
background: -o-linear-gradient(top, #3a3a3a 0%,#101010 100%);
background: -ms-linear-gradient(top, #3a3a3a 0%,#101010 100%);
background: linear-gradient(to bottom, #3a3a3a 0%,#101010 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a3a3a', endColorstr='#101010',GradientType=0 );
}

#main {
width:970px;
/*background-color:#ffffff;*/
margin: 0 auto;
}

所以问题是如何消除间隙,使其看起来像 chrome 和 safari,或者解决字距调整问题..我只是不想在 firefox 中出现这种间隙

最佳答案

您必须用 span 包裹有问题的字母并调整 CSS letter-spacing: 属性,直到得到您想要的为止。

良好排版的技巧,尤其是在自定义字体方面,还没有为浏览器的黄金时段做好准备。

B 计划:使用图像。

关于css - chrome 和 firefox 之间的字体字距调整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12919393/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com