Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sessions/s05_css_positions/task/task.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Complete each task by adding CSS rules below.
top: 0;
left: 0;
right: 0;
z-index: 1000;
z-index: 11;
}

/* ============================================
Expand Down Expand Up @@ -75,7 +75,7 @@ Complete each task by adding CSS rules below.
left: 0;
right: 0;
bottom: 0;
z-index: 999;
z-index: 10;
}

/* ============================================
Expand All @@ -86,7 +86,7 @@ Complete each task by adding CSS rules below.
.sticky-header {
position: sticky;
top: 0;
z-index: 10;
z-index: 2;
}

/* ============================================
Expand Down Expand Up @@ -185,7 +185,7 @@ Complete each task by adding CSS rules below.
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
z-index: 10;
}

/* ============================================
Expand Down