Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <style type="text/css">
  2. .container {
  3. width: 300px;
  4. height: 400px;
  5. margin: 50px auto;
  6. border: 1px solid #ccc;
  7. display: table;
  8. }
  9.  
  10. .img {
  11. text-align: center;
  12. vertical-align: middle;
  13. display: table-cell;
  14. }
  15.  
  16. img {
  17. width: 260px;
  18. height: 350px;
  19. }
  20. </style>
  21. <body>
  22. <div class="container">
  23. <div class="img">
  24. <img src="your_image.jpg">
  25. </div>
  26. </div>
  27. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement