Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <link rel="stylesheet" href="./css/style1.css">
  9. <title>Flexbox Links</title>
  10.  
  11. <style>
  12. a {
  13. border: 2px red solid;
  14. display: flex;
  15. flex-direction: row;
  16. height: 100px;
  17. width: 250px;
  18. justify-content: center;
  19. align-items: center;
  20. margin:10px;
  21. }
  22.  
  23. a span {
  24. display: flex;
  25. flex-direction: row;
  26. justify-content: center;
  27. align-items: center;
  28.  
  29. }
  30.  
  31. a span:nth-child(1) {
  32. font-size: 20px;
  33. color: red;
  34. }
  35.  
  36. a span:nth-child(2) {
  37. font-size: 10px;
  38. }
  39. </style>
  40. </head>
  41.  
  42. <body>
  43.  
  44. <a href="#">Hello World!</a>
  45. <a href="#">Hello World! Lorem ipsum dolor sit amet consectetur adipisicing elit.</a>
  46. <a href="#">Hello World! Lorem ipsum</br> dolor sit amet</br> consectetur adipisicing elit.</a>
  47. <a href="#"><span>Hello World!</span><span>Good Bye!</span></a>
  48. <a href="#"><span>Hello World! Lorem ipsum dolor</span><span>sit amet consectetur adipisicing elit.</span></a>
  49.  
  50. </body>
  51.  
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement