Advertisement
1xptolevitico69

Basic Css Layout

Oct 23rd, 2019
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=en>
  3. <head>
  4. <title>Rough Css Layout</title>
  5. <meta charset=utf-8>
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8.  
  9.  
  10. .x {
  11.   box-sizing: border-box;
  12.   display:block;
  13.   width:800px;
  14.   margin:-4px auto;
  15.   padding:0 0 0 6px;
  16. }
  17.  
  18. span {
  19.   font-size:30px;
  20.   width:390px;
  21.   background-color:red;
  22.   color:white;
  23.   height:200px;
  24.   display:inline-block;
  25.   transform:translate(4px,2px);
  26.   margin:-1px;
  27.   overflow:hidden;
  28.   text-align:center;
  29.   padding:10px;
  30.   box-sizing: border-box;
  31. }                
  32.  
  33. img {
  34.   width:100%;
  35.   height:100%;
  36. }
  37.  
  38. a {
  39.   text-decoration:none;
  40.   color:white;
  41.   font-family:segoe print;
  42.   font-weight:900;
  43. }
  44.  
  45. iframe {
  46.   width:100%;
  47.   height:100%;
  48. }
  49.  
  50.  
  51. </style>
  52. </head>
  53. <body>
  54.  
  55. <div class='x'>
  56.    <span><h1 style='font-size:40px;font-family:courier;'>I have no car. Instead i ride a donkey.</h1> </span>
  57.   <span><img src='https://images.pexels.com/photos/2569232/pexels-photo-2569232.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'/></span>
  58.    <span>
  59. <iframe width="560" height="315" src="https://www.youtube.com/embed/k32voqQhODc" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  60.   </span>
  61.   <span>
  62.     <a href='https://zsndndbaxq8vhlfcswjbiq-on.drv.tw/Audio Playlist Basics 1/Audio Playlist Basics 1.html'>Link<br/>Audio Playlist<br/> Basics</a>
  63.   </span>
  64.    <span style='font-size:30px;margin:auto;display:block;margin-top:-1px;overflow-y:scroll;font-family:courier;font-weight:900;padding:10px 20px;    '>To be centered i have needed some additional <a href='https://www.w3schools.com/html/html_styles.asp' target='_self'>INLINE</a> style. Why? Because i am not inside a <a href='https://www.w3schools.com/css/css3_flexbox.asp' target='_self'>FLEXBOX</a>. Otherwise it wouldn't be necessary such drastic measures.</span>
  65.   </div>
  66.  
  67. </body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement