Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. .listings ul li a.thumb{
  2. float:left;
  3. width:150px;
  4. height:130px;
  5. border:#ededed 3px solid;
  6. }
  7.  
  8. <a href="#" class="thumb">
  9. if ( checking with is full )
  10. {
  11. <img src="@Url.Content( Path.Combine( "~/Uploads/Products/", @item.ImagePath ) )" style = "width: 150px;" alt="" />
  12. }
  13. if ( checking height is full )
  14. {
  15. <img src="@Url.Content( Path.Combine( "~/Uploads/Products/", @item.ImagePath ) )" style = "height: 130px;" alt="" />
  16. }
  17. </a>
  18.  
  19. <a href="#" class="thumb"
  20. style="background-image: url('@Url.Content( Path.Combine( "~/Uploads/Products/", @item.ImagePath ) )')">&nbsp;</a>
  21.  
  22. <!DOCTYPE html>
  23. <html>
  24. <body>
  25. <article style="text-align:center">
  26. <img src="img/test.png" alt="test" />
  27. </article>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement