“Stopy stopień reaguje” Kod odpowiedzi

Stopy stopień reaguje

.footer{
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgb(235, 195, 64);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
Tough Tuatara

Jak zrobić lepką stopkę z react router

#container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

#main-content {
  flex: 1;
}
Excited Eland

Jak zrobić lepką stopkę z react router

  <div id="container">
    <Header loaded={loaded} />
    <div id="main-content">
      <Switch>
        <Route
          path="/about"
          render={props => <About loaded={loaded} {...props} />}
        />
        <Route
          exact
          path="/"
          render={props => <MainPage loaded={loaded} {...props} />}
        />
        <Redirect to="/" />
      </Switch>
    </div>
    <Footer />
  </div>
Excited Eland

Odpowiedzi podobne do “Stopy stopień reaguje”

Pytania podobne do “Stopy stopień reaguje”

Więcej pokrewnych odpowiedzi na “Stopy stopień reaguje” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu