Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. <div class="row">
  2. <div class="col">
  3. <form>
  4. <div class="row">
  5. <div class="col">
  6. <div class="label-column">
  7. <label>Label 1</label>
  8.  
  9. <label>Label 2</label>
  10.  
  11. <label>Label 3</label>
  12. </div>
  13. </div>
  14. <div class="col">
  15. <div class="content-column">
  16. <div>
  17. <p>{{contentForLabel1}}</p>
  18. </div>
  19. <br>
  20.  
  21. <div>
  22. <p>{{contentForLabel2}}</p>
  23. </div>
  24. <br>
  25.  
  26. <div>
  27. <p>{{contentForLabel3}}</p>
  28. </div>
  29. </div>
  30. </div>
  31.  
  32. <div class="col">
  33. <label>Label 4</label>
  34. </div>
  35.  
  36. <div class="col">
  37. <div class="content-area">
  38. <div>
  39. <div>
  40. <p
  41. style="font-weight: bold; color: grey"
  42. >Content displayed here in text with inline styling</p>
  43. </div>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </form>
  49.  
  50. form {
  51. background-color: white;
  52. margin-top: 30px;
  53. margin-bottom: 30px;
  54. justify-content: center;
  55. align-content: center;
  56. padding-bottom: 25px;
  57. width: 100%;
  58. }
  59. .form-area {
  60. margin-top: 30px;
  61. }
  62. label {
  63. display: block;
  64. color: black;
  65. font-weight: bold;
  66. }
  67. .label-column {
  68. padding-top: 25px;
  69. display: flex;
  70. display: inline-block;
  71. width: 80%;
  72. }
  73. .content-column {
  74. padding-top: 25px;
  75. display: flex;
  76. display: inline-block;
  77. width: 80%;
  78. }
  79. .content-area {
  80. padding-bottom: 25px;
  81. }
  82.  
  83. LABEL 1 content text LABEL 4 more text
  84. with some more text and so on...
  85. more text
  86. LABEL 2 here starts the next and so on...
  87. content text more text
  88. and so on...
  89. LABEL 3 here starts the last
  90. line of content text.
  91.  
  92. LABEL 4 more text
  93. LABEL 1 content text and so on...
  94. with some more text
  95. LABEL 2
  96.  
  97. LABEL 3 here starts the next
  98. content text
  99.  
  100.  
  101.  
  102. here starts the last
  103. line of content text
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement