Skip to content

Instantly share code, notes, and snippets.

@bars3s
Last active July 25, 2018 12:55
Show Gist options
  • Select an option

  • Save bars3s/959e758d88e84dddd52b38951984b5a3 to your computer and use it in GitHub Desktop.

Select an option

Save bars3s/959e758d88e84dddd52b38951984b5a3 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style>
.scrollable {
overflow-y: scroll;
}
html, body {
padding: 0;
margin:0;
}
.grid {
width: 100px;
margin: 1px 0 0 1px;
}
.grid div[class*='col-'] {
position: relative;
padding: 15px;
}
.resize-bar {
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 5px;
background-color: green;
}
.col-1-4 {
background-color:red;
}
.col-1-4:hover {
background-color: orange;
content: 'hovered';
}
</style>
</head>
<body>
<div class="grid">
<div class="col-1-4 scrollable">
<span class="resize-bar"></span>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment