我的网页有一些更大的字体.它是arial字体.我使用Adobe BrowserLab,我的网站在每个浏览器中看起来都很棒,但Chrome.Chrome使字体变得模糊和像素化.Chrome只是一个糟糕的浏览器还是我的结尾?
我有一个容器,我有#info持有我的h5文本.如何在容器中将文本放置在我想要的任何位置,而不会在分辨率不同时弄乱页面.谢谢.
<style media="screen" type="text/css">
body {
background-color:#C0C0C0;
}
#container {
background-image:url('pic.png');
background-repeat: no-repeat;
height: 541px;
width:1020px;
margin: auto;
}
#info {
height:500px;
width:700px;
}
a:link {
text-decoration: none;
color:#000000;
}
a:hover {
background-color:#efefef;
}
h5 {
color:black;
font-size:0.9em;
}
</style>
Run Code Online (Sandbox Code Playgroud)