Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS looking for the mquery @import url for the iphone5 landscape mode

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #44747
    drotar
    Participant

    I am looking for the @import url media query for the landscape mode of the iphone5 4″ inch screen. Has anybody out there used it or does it even exist? I’ve been searching google for the past two hours with no luck. what i have for the iphone4 which works perfectly is:

    /* phone-landscape */
    @import url(“phone-landscape.css”) only screen and (min-width:321px) and (max-width:480px);

    /* phone-portrait */
    @import url(“phone-portrait.css”) only screen and (max-width:320px);

    i now need to redesign for the larger iphone screen thus my request.

    any insight would be greatly appreciated. site i am using it on is http://www.johnbehring.tv

    drotar

    #134958
    CrocoDillon
    Participant

    Never use imports but I guess something like

    @import url(“phone-landscape.css”) only screen and (min-device-width: 481px) and (max-device-width: 568px) and (orientation: landscape);

    #134959
    drotar
    Participant

    thanks for a noble try, doesn’t work however. their has to be some documentation for this. doesn’t even exist on the apple site

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.