简体   繁体   中英

CSS grid and flex box alignment issues

so I was making this layout and i can't get the header to be aligned properly I want to move the button and heading to the red boxes enter image description here

The code is as follows:

<div class="main">
  <div class="header">
    <h1 class="notes__title">Notes</h1>
    <button class="notes__create">Create</button>
  </div>
  <div class="notes">
    <div class="note">
      <h3 class="note__title">Note Title</h3>
      <div class="note__body">Text....</div>
    </div>
  </div>

and the CSS

.main {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
}

.header {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    margin: 10px 0px;
}

.notes__title {
    color: #fff;
}
.notes {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

please help

You're using space-around which is what causes the effect you are seeing.

Try:

.header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
}
.header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
    max-width: 1200px;
}

ok so i did this and it worked although I am not happy with the solution, i wanted to achieve it with flex box only#

.main {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    min-height: 100vh;
}

.header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
}

我能想到的最简单的解决方案是使用 bootstrap cols 并使用 Notes 和 Button 之间的空格到达正确的位置

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM