我只是不明白。我已经尝试了一切,但它不起作用。我已经查找了多个教程,但它根本不起作用。
CSS
@font-face {
font-family: Note;
src: url('font/note_this-webfont.woff') format ('embedded-opentype'),
url('font/note_this-webfont.woff')
}
.note-editable {
width: 260px;
height: 130px;
padding-top: 20px;
margin-top: 60px;
margin-left: 56px;
padding: 0;
font-family: Note;
font-size: 18px;
}
答案 0 :(得分:1)
你有没有忘记在末尾添加分号“;” ...如果不是它肯定是文件的路径错误。
@font-face {
font-family: Note;
src: url('font/note_this-webfont.woff') format('embedded-opentype'),
url('font/note_this-webfont.woff');
}