Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Läxhjälpen Kap 11 - Saknar css-kod #27

Open
Isark2 opened this issue Jan 30, 2017 · 2 comments
Open

Läxhjälpen Kap 11 - Saknar css-kod #27

Isark2 opened this issue Jan 30, 2017 · 2 comments

Comments

@Isark2
Copy link

Isark2 commented Jan 30, 2017

När man följt kapitel 11 för uppgift 11C så ser inte sidan komplett ut. Ignorera outlines.
Det nämns angående att header och footer ska vara 100% bredd, men ingen instruktion som visar processen för när man bör göra det. Samt att den första delen för .subpage saknas helt.

Det kan man fixa genom att lägga till följande i css filen:

.subpage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.subpage header, .subpage footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@itpastorn
Copy link
Owner

Tack för din feedback

@itpastorn
Copy link
Owner

I mitt "facit" har jag följande regler för body och header och footer som gör samma saker. Det verkar inte framgå av boken.

body {
    margin: auto;
    max-width: 860px;
    font-family: "Helvetica Neue", "Liberation Sans", Calibri, Arial, sans-serif;
    font-size: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
body > header,
body > footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants