Created
April 1, 2016 20:59
-
-
Save sarkistlt/c81f0a5bec3a48218ac3f1d589960590 to your computer and use it in GitHub Desktop.
DIRECTV_test-task
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
#mainDiv { | |
height: 100vh; | |
width: 100vw; | |
border: 1px solid red; | |
} | |
#innerDiv { | |
height: 100vh; | |
width: 100vw; | |
border: 1px solid green; | |
} | |
.leftDiv { | |
position: absolute; | |
height: 50vh; | |
width: 50vw; | |
overflow: auto; | |
} | |
.leftDiv span img{ | |
display: block; | |
margin: 0 auto; | |
height: 200px; | |
width: 200px; | |
} | |
.rightDiv { | |
position: absolute; | |
height: 50vh; | |
width: 50vw; | |
} | |
.rightDiv div { | |
background-image: url('link on img'); | |
position: absolute; | |
z-index: -1; | |
top: -10px; | |
left: -10px; | |
height: 100vh; | |
width: 100vw; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment