Created
October 17, 2012 15:50
-
-
Save pavelbier/3906306 to your computer and use it in GitHub Desktop.
This file contains 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
<div id="chatbox"> | |
<div id="header"> | |
Name1, Name2, Name3<br /> | |
Name4, Name5, Name 6<br /> | |
</div> | |
<div id="content"> | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent sollicitudin viverra arcu non rhoncus. Aliquam erat volutpat. Pellentesque id sollicitudin justo. Nam id aliquet diam. Sed vel eros mi. Maecenas malesuada sapien eget mauris imperdiet ac tristique nunc varius. Donec sagittis diam tristique lacus ullamcorper rhoncus. Nullam et elit in odio laoreet dictum. Cras sit amet sem ligula. Donec nisi magna, vestibulum nec venenatis eget, dignissim non metus. Morbi malesuada auctor nisl rutrum commodo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin elementum molestie volutpat. Cras id diam et sapien semper venenatis pellentesque vitae orci. | |
</div> | |
</div> | |
|
This file contains 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
#chatbox { | |
height:300px; | |
width:250px; | |
margin:30px; | |
border:5px solid red; | |
display:-webkit-box; | |
-webkit-box-orient:vertical; | |
} | |
#header { | |
border:5px solid blue; | |
background:#555; | |
} | |
#content { | |
border:5px solid green; | |
-webkit-box-flex:1.0; | |
background:#ccc; | |
overflow:auto; | |
} | |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment