Forums

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

Home Forums CSS How to set the “Left css” for fire fox and chrome

  • This topic is empty.
Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #44676

    How to set the “Left css” for fire fox and chrome

    I would like to know How to set the “Left css” for fire fox and chrome because can’t seem to get them both the same. is there a way to set the “left / margin-left” one for fire fox and one for chrome.

    #134645
    daffy58
    Participant

    For Firefox
    @-moz-document url-prefix() {
    .wrapper {
    color:yellow;
    }
    }

    For Chrome
    @media screen and (-webkit-min-device-pixel-ratio:0) {
    #wrapper {
    color:yellow;
    }
    }

    #134649

    Where would i add it in here http://codepen.io/mwbcomputers/pen/jisvD

    #134654
    Paulie_D
    Member

    Does it matter?

    99.9%* of visitors will use one browser so how would they know that your margins are different.

    Even if they did notice, 99.9%* of those won’t care.

    *Totally made up number but up get the idea.

    #134657
    CrocoDillon
    Participant

    > Does it matter?

    http://dowebsitesneedtolookexactlythesameineverybrowser.com/

    > *Totally made up number but up get the idea.

    84% of all statistics are made up on the spot.

    #134658

    just about there but now panel is pushing container down. panel has own out side wrapper. Page-Wrapper is for behind /out side container and the main container is for main content

    #container {
    width: 944px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    }
    #page-wrapper {
    margin: 0 auto;
    width: 1244px;
    }

    .panel {
    width: 150px;
    min-height: 500px;
    text-indent: -5000px;
    background: #000;
    }
    .panel a {
    display: block;
    height: 800px;
    width: 150px;
    position: fixed;

    }

    #134659
    Paulie_D
    Member
    #134660

    Have got it working on one side which will just use going to do a little trick with illustrator and html styling to make it look like it.

    Have got the container issue sorted margin problem sorted out for left side for fire fox and chrome. will work on right side later on.

    http://mwbcomputers.com.au/themes/

    #134661

    Trying every body’s way all good advice

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