我猜我需要一個文檔類型,因爲下面的字體樣式只出現在Safari和Chrome中我想要它。所以我每次添加HTML5文檔類型時,都會寫入自定義字體消失。我是一個業餘編碼器,所以請裸露代碼,我教了自己。亂七八糟的CSS字體樣式的文檔類型?
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8"/>
<style type="text/css">
#yolk {
background-image: url(Yolk.png);
background-repeat: no-repeat;
background-position: center top;
padding-top:250px;
}
body {
background-color:#000000;
}
#lol {
background-image: url(lol.png);
background-repeat: no-repeat;
background-position: center top;
padding-top: 100px;
padding-bottom: 100px;
}
@font-face {
font-family: my_font;
src: url('http://myurl.com/lolfont.eot');
src: url('lolfont.eot'), url('lolfont.ttf') format('opentype');
}
p {
font-family: my_font;
color: de0000;
text-align: left;
font-size: 50px;
line-height: 10%;
text-indent: 350px;
}
</style>
<title>yolk</title>
</head>
<body>
<div id="yolk"></div>
<center>
<embed allowScriptAccess="never" src="http://swing.awardspace.com/newcoun… width=320 height=110 wmode=transparent menu=false></embed>
</center>
<p>test</p>
<a href="http://www.google.com" title="lol"><div id="lol"></div></a>
</font>
</html>
「*我想我需要一個文檔類型,因爲下面的字體樣式只出現在Safari和Chrome中我想要的樣子,所以每次添加HTML5文檔類型時,寫入我的自定義字體消失*」 - So ,當你添加doctype時,字體樣式消失。這就是爲什麼你需要一個文檔類型?等等,什麼? –