Reputation: 7547
I created website and it uses fluid layout CSS for most of the parts. I now want to make a tablet friendly look of this website.
This website should be viewable properly on Ipad. That's my only requirement.
How can I do this? Which are the development tools to speed me up for this?
Edit: Many people are give suggestion to use Jquery Mobile. Can I use that with my existing Asp.Net website? Do I need to change my whole existing CSS and also am I restricted to use those Jquery UI buttons only?
2nd and most important question is will this work with Asp.Net Vanilla. Say if I have a gridview on my page. Will Jquery mobile work?
Upvotes: 3
Views: 3205
Reputation: 13150
For device friendly website, you should use Asp.net MVC4 and jQuery Mobile. It has great mobile features
First you should read Using HTML5 to Create Mobile Experiences and 50 Responsive web examples
Upvotes: 4
Reputation: 3551
You can also use a framework for your responsive design.
e.g. framelessgrid
Upvotes: 0
Reputation: 998
You can also look into responsive CSS. It uses device width and image scaling and good CSS definitions to scale the site to the device.
Upvotes: 0
Reputation: 4071
Use the CSS Media Queries. And here is a useful article about ASP.NET MVC4 mobile features.
Upvotes: 0