Last active
July 25, 2018 12:55
-
-
Save bars3s/959e758d88e84dddd52b38951984b5a3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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