Guest User

Untitled

a guest
Oct 15th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7. <style id="jsbin-css">
  8. *{
  9. margin:0;
  10. padding:0;
  11. }
  12. .left{
  13. width:200px;
  14. height:100vh;
  15. background:red;
  16. float:left;
  17. /* border:none; */
  18. }
  19. .right{
  20. width:calc(100%-200px);
  21. height:100vh;
  22. background:green;
  23. /* float:right; */
  24. /* border:none; */
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="left"></div>
  30. <div class="right"></div>
  31.  
  32.  
  33. <script id="jsbin-source-css" type="text/css">*{
  34. margin:0;
  35. padding:0;
  36. }
  37. .left{
  38. width:200px;
  39. height:100vh;
  40. background:red;
  41. float:left;
  42. /* border:none; */
  43. }
  44. .right{
  45. width:calc(100%-200px);
  46. height:100vh;
  47. background:green;
  48. /* float:right; */
  49. /* border:none; */
  50. }</script>
  51. </body>
  52. </html>
Add Comment
Please, Sign In to add comment