Guest User

Untitled

a guest
Jan 22nd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <span class="dashes">Hello WOrld</span>
  2.  
  3. <style type="text/css">
  4. .dashes { font-weight: bold; }
  5. .dashes:before, .dashes:after { content:"----"; color:#f00; }
  6. </style>
  7.  
  8. <h4 class="sidelines"><span>Hello WOrld</span></h4>
  9. <style type="text/css">
  10. h4.sidelines { text-align: center; border-bottom: 1px solid #f00; height: 0.5em; }
  11. h4.sidelines span { display: inline-block; background: #fff; padding:0 0.25em; }
  12. </style>
  13.  
  14. p:before,p:after {
  15. content: "---";
  16. }
  17.  
  18. <p>Hello WOrld</p>
  19.  
  20. <div class="line"></div>
  21. <div class="text">Hello WOrld</div>
  22. <div class="line"></div>
  23.  
  24. .line
  25. {
  26. width:100px;background-color:black;
  27. border: 0.1em solid black; /* dashed, groove, inset */
  28. margin-top:0.45em;margin-bottom:0.45em;
  29. }
  30.  
  31. .line, .text
  32. {
  33. float:left;
  34. }
  35.  
  36. .text
  37. {
  38. padding-left:10px;padding-right:10px;
  39. }
Add Comment
Please, Sign In to add comment