Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. footer {
  2. width: 100%;
  3. background: #eee;
  4. position: fixed;
  5. bottom: 0;
  6. text-align: center;
  7. }
  8.  
  9. footer p {
  10. line-height: 40px;
  11. display: inline-block;
  12. margin:25px 20px 25px 0;
  13. padding: 0 25px;
  14. border-right: 1px solid #aaa;
  15. }
  16.  
  17. footer ul {
  18. display: inline-block;
  19. width: 140px;
  20. list-style: none;
  21. margin: 25px 0;
  22. padding: 0;
  23. line-height: 40px;
  24. }
  25.  
  26. footer li {
  27. display: inline-block;
  28. line-height: 40px;
  29. }
  30.  
  31. footer a {
  32. font-size: 25px;
  33. color: #aaa;
  34. text-decoration: none;
  35. margin: 0 10px;
  36. }
  37.  
  38. <footer>
  39. <p>Some text</p>
  40. <ul>
  41. <li><a href="#" class="fab fa-instagram"></a></li>
  42. <li><a href="#" class="fab fa-telegram-plane"></a></li>
  43. <li><a href="#" class='fab fa-behance'></a></li>
  44. </ul>
  45. </footer>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement