Column Dopple Beast
by Sam Fereday
HTML
<ul>
<li>Test
<div>
<p>
Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing
</p>
</div>
</li>
<li>Test 2
<div>
<p>
Ipsum has been theasdasdasopularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing
</p>
</div>
</li>
</ul>
SCSS
ul {
width: 100%;
list-style: none;
padding: 0;
margin: 0;
box-sizing: border-box;
position: relative;
}
li {
width: 50%;
float: left;
padding: 1em;
box-sizing: border-box;
cursor: pointer;
border: 1px solid #333;
}
li div {
position: absolute;
left: 0;
top: 3em;
display: none;
padding: 1em;
border-right: 1px solid #333;
border-bottom: 1px solid #333;
border-left: 1px solid #333;
}
li:hover {
background: #333;
color: #fff;
div {
display: block;
color: #000;
}
}