Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="de">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Die CSS Layout Eigenschaften</title>
  6. <style>
  7. body {
  8. background-color: grey;
  9. }
  10. div {
  11. background-color: white;
  12. }
  13. #box3 {
  14. background-color:gold;
  15. width:80%; /* Breite des Elements, px, % */
  16. height:50px; /* Höhe des Elements, px, % */
  17. max-width: 800px; /* Obergrenze für relative Breite */
  18. min-width: 600px; /* Untergrenze für relative Breite */
  19. /* die Eigenschafen width und height können für inline-Elemente nicht festegelegt werden */
  20. }
  21.  
  22. #box2 {
  23. background: lightblue;
  24. /* Innenabstand - Anstand zwischen Inhalt und Rand
  25. ausfürliche Schreibweise
  26. padding-top: 10px;
  27. padding-right: 20px;
  28. padding-bottom: 40px;
  29. padding-left: 80px;
  30.  
  31. Kurzschreibweise:
  32.  
  33. padding: -top [-right] [-bottom] [-left]
  34. */
  35. padding: 10px 20px 40px 80px;
  36.  
  37. /* Außenabstand - Anstand zwischen Rand und benachbarten Objekten
  38. ausfürliche Schreibweise
  39. margin-top: 10px;
  40. margin-right: 20px;
  41. margin-bottom: 40px;
  42. margin-left: 80px;
  43. Kurzschreibweise:
  44.  
  45. margin: -top [-right] [-bottom] [-left]
  46. */
  47. margin: 10px 20px 40px 80px;
  48.  
  49. }
  50.  
  51. #box1 {
  52. width:500px;
  53. height: 200px;
  54. margin: 0 auto;
  55. }
  56.  
  57. </style>
  58. </head>
  59. <body>
  60. <h1>Die CSS Layout Eigenschaften</h1>
  61. <div id="box1">Das ist die erste Box.</div>
  62. <div id="box2">Das ist die <span>zweite</span> Box. Das ist die <span>zweite</span> Box. Das ist die <span>zweite</span> Box. Das ist die <span>zweite</span> Box.</div>
  63. <div id="box3">Aller guten Dinge sind drei.</div>
  64.  
  65. </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement