Guest User

Untitled

a guest
Jul 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. .fluid_img {
  2. height: auto;
  3. width: auto;
  4. max-width: 100%;
  5. }
  6.  
  7. <img class="fluid_img" src="..." style="width: 50px; height: 100px;">
  8.  
  9. $('<img>').src('...').css({width: 50, height: 100});
  10.  
  11. #myimage {
  12. background: url(yourimage);
  13. widthe: 100px;
  14. height:200px;
  15. display:inline-block;
  16. }
  17.  
  18. <div id="myimage"></div>
  19.  
  20. .myimage {
  21. display: -moz-inline-stack;
  22. display: inline-block;
  23. zoom: 1;
  24. *display: inline;
  25. }
  26.  
  27. <img class="myimage" style="width:100px;height:200px">
Add Comment
Please, Sign In to add comment