Click here to Skip to main content
15,886,919 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello Friends,

I want to know that how we can make responsive Listview,Gridview while they contaning
Images ??
Posted
Comments
Suvendu Shekhar Giri 27-Oct-15 6:45am    
Not clear. Anything you have tried so far?

1 solution

You could use responsive styles:

CSS
@media (min-width: 768px{
 img .responsive{
   width: 30px;
   height: 20px;
 }
}
@media (min-width 1060px{
 img .responsive{
   width: 60px;
   height: 40px;
 }
}


That's how bootstrap maintains it's responsive css
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900