我正在尝试为我的iPad网站使用自定义字体,它非常适合横向而非肖像模式。
我的HTML结构
body
#wrapper
blahblah
风景风格 - 作品
@media only screen and (orientation:landscape){
@font-face {
font-family: custom_helvetica;
src: url('../includes/helvetican.ttf');
}
#wrapper {
width:/*768px;*/1024px;
font-family: custom_helvetica;
margin:auto;
}
人像CSS - 不显示表单
@media only screen and (orientation:portrait){
@font-face {
font-family: custom_helvetica;
src: url('../includes/helvetican.ttf');
}
#wrappper {
width:768px;
font-family: helvetica;
margin:auto;
}
答案 0 :(得分:1)
选择器是否正确?
每个