CSS自定义字体在横向模式下工作,但在iPad的纵向模式下不工作

时间:2011-11-08 09:59:44

标签: css ipad

我正在尝试为我的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;
    }

1 个答案:

答案 0 :(得分:1)

选择器是否正确?

每个

包裹* p *?