Skip to content
Open
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ <h1 class="dashboard--heading">CSS Board</h1>

<section class="dashboard--selectors">
<h2>Selectors</h2>
<ul></ul>
<ul>
<li class="post-it" id="josie-corrina">
<h3>Combinator Selectors</h3>
<p>Combinator Selectors allow us to select elements by specifying their relationship with their parents or sibling element</p>
</li>
</ul>
</section>

<section class="dashboard--properties">
Expand Down
9 changes: 9 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,16 @@ h3 {
/* SELECTORS */
/***************************************************/
/* Put Selector post-it styles here! ↓ */
#josie-corrina {
background-color: #e0ea87;
height: 200px;
aspect-ratio: 1/1;
transform: rotate(-10deg);
}

#josie-corrina h3 {
font-weight: bold;
}
/***************************************************/
/* PROPERTIES */
/***************************************************/
Expand Down