我正在使用網格構建一個日歷應用程序,我目前遇到的一個問題是日歷項目都堆疊在一起,而不是在彼此下面。你們能幫我嗎?
現在看起來怎么樣它應該是什么樣子
$('.task').mouseover(function () {
$(this).children('.task-detail').attr('hidden', false)
}).mouseleave(function () {
$(this).children('.task-detail').attr('hidden', true)
})
.calendar {
display: grid;
width: 100%;
grid-template-columns: repeat(7, minmax(120px, 1fr));
grid-template-rows: 50px;
grid-auto-rows: 150px;
overflow: auto;
}
.calendar-header {
color: #99a1a7;
font-size: 25px;
text-align: center;
}
.calender-navigation-item {
font-size: 30px;
}
a.calender-navigation-item:hover {
transform: scale(1.5);
}
.calendar-container {
width: 85%;
margin: auto;
overflow: hidden;
border-radius: 10px;
}
.calender-navigation {
display: flex;
justify-content: space-between;
font-size: 20px;
color: #99a1a7;
line-height: 50px;
font-weight: 500;
}
.calendar-language {
width: 250px;
padding-right: 10px;
padding-top: 10px;
margin-left: auto;
margin-right: 0;
}
.day {
border-bottom: 1px solid rgba(166, 168, 179, 0.12);
border-right: 1px solid rgba(166, 168, 179, 0.12);
text-align: right;
padding: 14px 20px;
letter-spacing: 1px;
font-size: 12px;
box-sizing: border-box;
color: #98a0a6;
position: relative;
pointer-events: none;
}
.day:nth-of-type(7n + 7) {
border-right: 0;
}
.day:nth-of-type(n + 1):nth-of-type(-n + 7) {
grid-row: 2;
}
.day:nth-of-type(n + 8):nth-of-type(-n + 14) {
grid-row: 3;
}
.day:nth-of-type(n + 15):nth-of-type(-n + 21) {
grid-row: 4;
}
.day:nth-of-type(n + 22):nth-of-type(-n + 28) {
grid-row: 5;
}
.day:nth-of-type(n + 29):nth-of-type(-n + 35) {
grid-row: 6;
}
.day:nth-of-type(7n + 1) {
grid-column: 1/1;
}
.day:nth-of-type(7n + 2) {
grid-column: 2/2;
}
.day:nth-of-type(7n + 3) {
grid-column: 3/3;
}
.day:nth-of-type(7n + 4) {
grid-column: 4/4;
}
.day:nth-of-type(7n + 5) {
grid-column: 5/5;
}
.day:nth-of-type(7n + 6) {
grid-column: 6/6;
}
.day:nth-of-type(7n + 7) {
grid-column: 7/7;
}
.day-name {
font-size: 12px;
text-transform: uppercase;
color: #99a1a7;
text-align: center;
border-bottom: 1px solid rgba(166, 168, 179, 0.12);
line-height: 50px;
font-weight: 500;
}
.day-disabled {
color: rgba(152, 160, 166, 0.6);
background-color: #ffffff;
background-image: url('../day_disabled.svg');
cursor: not-allowed;
}
.task {
margin: 15px;
font-size: 14px;
position: relative;
background: black;
border-radius: 4px;
color: #fff;
height: 10px;
}
.task.task-start {
border-left-style: solid;
}
.task-detail {
position: absolute;
left: 0;
top: calc(100% + 10px);
background: #fff;
border: 1px solid rgba(166, 168, 179, 0.2);
color: #000;
padding: 20px;
box-sizing: border-box;
border-radius: 4px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
z-index: 999;
}
.task-detail:after, .task-detail:before {
bottom: 100%;
left: 30%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.task-detail:before {
border-bottom-color: rgba(166, 168, 179, 0.2);
border-width: 8px;
margin-left: -8px;
}
.task-detail:after {
border-bottom-color: #fff;
border-width: 6px;
margin-left: -6px;.calendar {
display: grid;
width: 100%;
grid-template-columns: repeat(7, minmax(120px, 1fr));
grid-template-rows: 50px;
grid-auto-rows: 150px;
overflow: auto;
}
.calendar-header {
color: #99a1a7;
font-size: 25px;
text-align: center;
}
.calender-navigation-item {
font-size: 30px;
}
a.calender-navigation-item:hover {
transform: scale(1.5);
}
.calendar-container {
width: 85%;
margin: auto;
overflow: hidden;
border-radius: 10px;
}
.calender-navigation {
display: flex;
justify-content: space-between;
font-size: 20px;
color: #99a1a7;
line-height: 50px;
font-weight: 500;
}
.calendar-language {
width: 250px;
padding-right: 10px;
padding-top: 10px;
margin-left: auto;
margin-right: 0;
}
.day {
border-bottom: 1px solid rgba(166, 168, 179, 0.12);
border-right: 1px solid rgba(166, 168, 179, 0.12);
text-align: right;
padding: 14px 20px;
letter-spacing: 1px;
font-size: 12px;
box-sizing: border-box;
color: #98a0a6;
position: relative;
pointer-events: none;
}
.day:nth-of-type(7n + 7) {
border-right: 0;
}
.day:nth-of-type(n + 1):nth-of-type(-n + 7) {
grid-row: 2;
}
.day:nth-of-type(n + 8):nth-of-type(-n + 14) {
grid-row: 3;
}
.day:nth-of-type(n + 15):nth-of-type(-n + 21) {
grid-row: 4;
}
.day:nth-of-type(n + 22):nth-of-type(-n + 28) {
grid-row: 5;
}
.day:nth-of-type(n + 29):nth-of-type(-n + 35) {
grid-row: 6;
}
.day:nth-of-type(7n + 1) {
grid-column: 1/1;
}
.day:nth-of-type(7n + 2) {
grid-column: 2/2;
}
.day:nth-of-type(7n + 3) {
grid-column: 3/3;
}
.day:nth-of-type(7n + 4) {
grid-column: 4/4;
}
.day:nth-of-type(7n + 5) {
grid-column: 5/5;
}
.day:nth-of-type(7n + 6) {
grid-column: 6/6;
}
.day:nth-of-type(7n + 7) {
grid-column: 7/7;
}
.day-name {
font-size: 12px;
text-transform: uppercase;
color: #99a1a7;
text-align: center;
border-bottom: 1px solid rgba(166, 168, 179, 0.12);
line-height: 50px;
font-weight: 500;
}
.day-disabled {
color: rgba(152, 160, 166, 0.6);
background-color: #ffffff;
background-image: url('../day_disabled.svg');
cursor: not-allowed;
}
.task {
margin: 15px;
font-size: 14px;
position: relative;
background: black;
border-radius: 4px;
color: #fff;
height: 10px;
}
.task.task-start {
border-left-style: solid;
}
.task-detail {
position: absolute;
left: 0;
top: calc(100% + 10px);
background: #fff;
border: 1px solid rgba(166, 168, 179, 0.2);
color: #000;
padding: 20px;
box-sizing: border-box;
border-radius: 4px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
z-index: 999;
}
.task-detail:after, .task-detail:before {
bottom: 100%;
left: 30%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.task-detail:before {
border-bottom-color: rgba(166, 168, 179, 0.2);
border-width: 8px;
margin-left: -8px;
}
.task-detail:after {
border-bottom-color: #fff;
border-width: 6px;
margin-left: -6px;
}
.task-detail h2 {
font-size: 15px;
margin: 0;
color: #51565d;
}
.task-detail p {
margin-top: 4px;
font-size: 12px;
margin-bottom: 0;
font-weight: 500;
color: rgba(81, 86, 93, .7);
}
}
.task-detail h2 {
font-size: 15px;
margin: 0;
color: #51565d;
}
.task-detail p {
margin-top: 4px;
font-size: 12px;
margin-bottom: 0;
font-weight: 500;
color: rgba(81, 86, 93, .7);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="calendar">
<span class="day-name">Sunday</span>
<span class="day-name">Monday</span>
<span class="day-name">Tuesday</span>
<span class="day-name">Wednesday</span>
<span class="day-name">Thursday</span>
<span class="day-name">Friday</span>
<span class="day-name">Saturday</span>
<div class="day day-disabled">30</div>
<div class="day">1</div>
<div class="day">2</div>
<div class="day">3</div>
<div class="day">4</div>
<div class="day">5</div>
<div class="day">6</div>
<div class="day">7</div>
<div class="day">8</div>
<div class="day">9</div>
<div class="day">10</div>
<div class="day">11</div>
<div class="day">12</div>
<div class="day">13</div>
<div class="day">14</div>
<div class="day">15</div>
<div class="day">16</div>
<div class="day">17</div>
<div class="day">18</div>
<div class="day">19</div>
<div class="day">20</div>
<div class="day">21</div>
<div class="day">22</div>
<div class="day">23</div>
<div class="day">24</div>
<div class="day">25</div>
<div class="day">26</div>
<div class="day">27</div>
<div class="day">28</div>
<div class="day">29</div>
<div class="day">30</div>
<div class="day">31</div>
<div class="day day-disabled">1</div>
<div class="day day-disabled">2</div>
<div class="day day-disabled">3</div>
<div class="task" style="grid-column: 1 / span 7; grid-row: 3;">
<div hidden="" class="task-detail">
<h2>foo033 - Type 1</h2>
<p>Created by Foo </p>
</div>
</div>
<div class="task" style="grid-column: 1 / span 7; grid-row: 3;">
<div hidden="" class="task-detail">
<h2>foo033 - Type 2</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task" style="grid-column: 1 / span 7; grid-row: 3;">
<div hidden="" class="task-detail">
<h2>foo033 - Type 3</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task" style="grid-column: 1 / span 7; grid-row: 3;">
<div hidden="" class="task-detail">
<h2>foo033 - Type 4</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task" style="grid-column: 1 / span 7; grid-row: 3;">
<div hidden="" class="task-detail">
<h2>foo033 - Type 5</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task" style="grid-column: 1 / span 7; grid-row: 3;">
<div hidden="" class="task-detail">
<h2>foo033 - Type 6</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task" style="grid-column: 1 / span 7; grid-row: 3;">
<div hidden="" class="task-detail">
<h2>foo033 - Type 7</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task" style="grid-column: 1 / span 7; grid-row: 3;">
<div hidden="" class="task-detail">
<h2>foo033 - Type 8</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task" style="grid-column: 1 / span 7; grid-row: 3;">
<div hidden="" class="task-detail">
<h2>foo033 - Type 9</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task" style="grid-column: 1 / span 7; grid-row: 3;">
<div hidden="" class="task-detail">
<h2>foo033 - Type 10</h2>
<p>Created by Foo</p>
</div>
</div>
</div>
你需要裹上你的。任務容器中的元素,并使用grid-column:1/span 7;網格-行:3;。這個問題源于將元素顯式地放在網格的同一行/列中。Grid將堆疊元素(z索引)。它們不是彼此相對放置的,而是它們所在的網格列/行。
這將從中移除所有網格定位。任務元素,并用網格定位將它們包裝在. task-list元素中。
$('.task').mouseover(function() {
$(this).children('.task-detail').attr('hidden', false)
}).mouseleave(function() {
$(this).children('.task-detail').attr('hidden', true)
})
.calendar {
display: grid;
width: 100%;
grid-template-columns: repeat(7, minmax(120px, 1fr));
grid-template-rows: 50px;
grid-auto-rows: 150px;
overflow: auto;
}
.calendar-header {
color: #99a1a7;
font-size: 25px;
text-align: center;
}
.calender-navigation-item {
font-size: 30px;
}
a.calender-navigation-item:hover {
transform: scale(1.5);
}
.calendar-container {
width: 85%;
margin: auto;
overflow: hidden;
border-radius: 10px;
}
.calender-navigation {
display: flex;
justify-content: space-between;
font-size: 20px;
color: #99a1a7;
line-height: 50px;
font-weight: 500;
}
.calendar-language {
width: 250px;
padding-right: 10px;
padding-top: 10px;
margin-left: auto;
margin-right: 0;
}
.day {
border-bottom: 1px solid rgba(166, 168, 179, 0.12);
border-right: 1px solid rgba(166, 168, 179, 0.12);
text-align: right;
padding: 14px 20px;
letter-spacing: 1px;
font-size: 12px;
box-sizing: border-box;
color: #98a0a6;
position: relative;
pointer-events: none;
}
.day:nth-of-type(7n + 7) {
border-right: 0;
}
.day:nth-of-type(n + 1):nth-of-type(-n + 7) {
grid-row: 2;
}
.day:nth-of-type(n + 8):nth-of-type(-n + 14) {
grid-row: 3;
}
.day:nth-of-type(n + 15):nth-of-type(-n + 21) {
grid-row: 4;
}
.day:nth-of-type(n + 22):nth-of-type(-n + 28) {
grid-row: 5;
}
.day:nth-of-type(n + 29):nth-of-type(-n + 35) {
grid-row: 6;
}
.day:nth-of-type(7n + 1) {
grid-column: 1/1;
}
.day:nth-of-type(7n + 2) {
grid-column: 2/2;
}
.day:nth-of-type(7n + 3) {
grid-column: 3/3;
}
.day:nth-of-type(7n + 4) {
grid-column: 4/4;
}
.day:nth-of-type(7n + 5) {
grid-column: 5/5;
}
.day:nth-of-type(7n + 6) {
grid-column: 6/6;
}
.day:nth-of-type(7n + 7) {
grid-column: 7/7;
}
.day-name {
font-size: 12px;
text-transform: uppercase;
color: #99a1a7;
text-align: center;
border-bottom: 1px solid rgba(166, 168, 179, 0.12);
line-height: 50px;
font-weight: 500;
}
.day-disabled {
color: rgba(152, 160, 166, 0.6);
background-color: #ffffff;
background-image: url('../day_disabled.svg');
cursor: not-allowed;
}
.task {
margin: 15px;
font-size: 14px;
position: relative;
background: black;
border-radius: 4px;
color: #fff;
height: 10px;
}
.task.task-start {
border-left-style: solid;
}
.task-detail {
position: absolute;
left: 0;
top: calc(100% + 10px);
background: #fff;
border: 1px solid rgba(166, 168, 179, 0.2);
color: #000;
padding: 20px;
box-sizing: border-box;
border-radius: 4px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
z-index: 999;
}
.task-detail:after,
.task-detail:before {
bottom: 100%;
left: 30%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.task-detail:before {
border-bottom-color: rgba(166, 168, 179, 0.2);
border-width: 8px;
margin-left: -8px;
}
.task-detail:after {
border-bottom-color: #fff;
border-width: 6px;
margin-left: -6px;
}
.calendar {
display: grid;
width: 100%;
grid-template-columns: repeat(7, minmax(120px, 1fr));
grid-template-rows: 50px;
grid-auto-rows: 150px;
overflow: auto;
}
.calendar-header {
color: #99a1a7;
font-size: 25px;
text-align: center;
}
.calender-navigation-item {
font-size: 30px;
}
a.calender-navigation-item:hover {
transform: scale(1.5);
}
.calendar-container {
width: 85%;
margin: auto;
overflow: hidden;
border-radius: 10px;
}
.calender-navigation {
display: flex;
justify-content: space-between;
font-size: 20px;
color: #99a1a7;
line-height: 50px;
font-weight: 500;
}
.calendar-language {
width: 250px;
padding-right: 10px;
padding-top: 10px;
margin-left: auto;
margin-right: 0;
}
.day {
border-bottom: 1px solid rgba(166, 168, 179, 0.12);
border-right: 1px solid rgba(166, 168, 179, 0.12);
text-align: right;
padding: 14px 20px;
letter-spacing: 1px;
font-size: 12px;
box-sizing: border-box;
color: #98a0a6;
position: relative;
pointer-events: none;
}
.day:nth-of-type(7n+7) {
border-right: 0;
}
.day:nth-of-type(n+1):nth-of-type(-n+7) {
grid-row: 2;
}
.day:nth-of-type(n+8):nth-of-type(-n+14) {
grid-row: 3;
}
.day:nth-of-type(n+15):nth-of-type(-n+21) {
grid-row: 4;
}
.day:nth-of-type(n+22):nth-of-type(-n+28) {
grid-row: 5;
}
.day:nth-of-type(n+29):nth-of-type(-n+35) {
grid-row: 6;
}
.day:nth-of-type(7n+1) {
grid-column: 1/1;
}
.day:nth-of-type(7n+2) {
grid-column: 2/2;
}
.day:nth-of-type(7n+3) {
grid-column: 3/3;
}
.day:nth-of-type(7n+4) {
grid-column: 4/4;
}
.day:nth-of-type(7n+5) {
grid-column: 5/5;
}
.day:nth-of-type(7n+6) {
grid-column: 6/6;
}
.day:nth-of-type(7n+7) {
grid-column: 7/7;
}
.day-name {
font-size: 12px;
text-transform: uppercase;
color: #99a1a7;
text-align: center;
border-bottom: 1px solid rgba(166, 168, 179, 0.12);
line-height: 50px;
font-weight: 500;
}
.day-disabled {
color: rgba(152, 160, 166, 0.6);
background-color: #ffffff;
background-image: url('../day_disabled.svg');
cursor: not-allowed;
}
.task-list {
grid-column: 1 / span 7;
grid-row: 3;
}
.task {
margin: 15px;
font-size: 14px;
position: relative;
background: black;
border-radius: 4px;
color: #fff;
height: 10px;
}
.task.task-start {
border-left-style: solid;
}
.task-detail {
position: absolute;
left: 0;
top: calc(100% + 10px);
background: #fff;
border: 1px solid rgba(166, 168, 179, 0.2);
color: #000;
padding: 20px;
box-sizing: border-box;
border-radius: 4px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
z-index: 999;
}
.task-detail:after,
.task-detail:before {
bottom: 100%;
left: 30%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.task-detail:before {
border-bottom-color: rgba(166, 168, 179, 0.2);
border-width: 8px;
margin-left: -8px;
}
.task-detail:after {
border-bottom-color: #fff;
border-width: 6px;
margin-left: -6px;
}
.task-detail h2 {
font-size: 15px;
margin: 0;
color: #51565d;
}
.task-detail p {
margin-top: 4px;
font-size: 12px;
margin-bottom: 0;
font-weight: 500;
color: rgba(81, 86, 93, .7);
}
}
.task-detail h2 {
font-size: 15px;
margin: 0;
color: #51565d;
}
.task-detail p {
margin-top: 4px;
font-size: 12px;
margin-bottom: 0;
font-weight: 500;
color: rgba(81, 86, 93, .7);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="calendar">
<span class="day-name">Sunday</span>
<span class="day-name">Monday</span>
<span class="day-name">Tuesday</span>
<span class="day-name">Wednesday</span>
<span class="day-name">Thursday</span>
<span class="day-name">Friday</span>
<span class="day-name">Saturday</span>
<div class="day day-disabled">30</div>
<div class="day">1</div>
<div class="day">2</div>
<div class="day">3</div>
<div class="day">4</div>
<div class="day">5</div>
<div class="day">6</div>
<div class="day">7</div>
<div class="day">8</div>
<div class="day">9</div>
<div class="day">10</div>
<div class="day">11</div>
<div class="day">12</div>
<div class="day">13</div>
<div class="day">14</div>
<div class="day">15</div>
<div class="day">16</div>
<div class="day">17</div>
<div class="day">18</div>
<div class="day">19</div>
<div class="day">20</div>
<div class="day">21</div>
<div class="day">22</div>
<div class="day">23</div>
<div class="day">24</div>
<div class="day">25</div>
<div class="day">26</div>
<div class="day">27</div>
<div class="day">28</div>
<div class="day">29</div>
<div class="day">30</div>
<div class="day">31</div>
<div class="day day-disabled">1</div>
<div class="day day-disabled">2</div>
<div class="day day-disabled">3</div>
<div class="task-list">
<div class="task" style="">
<div hidden="" class="task-detail">
<h2>foo033 - Type 1</h2>
<p>Created by Foo </p>
</div>
</div>
<div class="task">
<div hidden="" class="task-detail">
<h2>foo033 - Type 2</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task">
<div hidden="" class="task-detail">
<h2>foo033 - Type 3</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task">
<div hidden="" class="task-detail">
<h2>foo033 - Type 4</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task">
<div hidden="" class="task-detail">
<h2>foo033 - Type 5</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task">
<div hidden="" class="task-detail">
<h2>foo033 - Type 6</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task">
<div hidden="" class="task-detail">
<h2>foo033 - Type 7</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task">
<div hidden="" class="task-detail">
<h2>foo033 - Type 8</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task">
<div hidden="" class="task-detail">
<h2>foo033 - Type 9</h2>
<p>Created by Foo</p>
</div>
</div>
<div class="task">
<div hidden="" class="task-detail">
<h2>foo033 - Type 10</h2>
<p>Created by Foo</p>
</div>
</div>
</div>
</div>