Basically mobile device screen is small size, so that you can view table data very complex, and finally cut horizontal screen location, it can expand more. we can view complete table data. In desktop computers/laptops has no problem of screen size.
Basically mobile device very small screen, so that any table information cannot fit on.
Use following code you can solve, this code table data scroll horizontal move
Visibility problem in Mobile device as table data
The mobile device screen was very less size, so that to display complete table data i.e all columns exactly fit in the screen location. But PC or laptops has no problem with size point of view. To solve above problem just add one CSS code to table tag in html.
In this article we provide coding technique for table data view in mobile devices. Just add css style code to table data.
Use the following additional <div> tag to <table> tag
<div style="overflow-x:auto;"> <table> -------- </table> </div>If you need vertical move of table data use following
<div style="overflow-y:auto;"> <table> -------- </table> </div>
- Also read as Question and Answer model paper preparation script code
- PHP interview Questions with answers
0 Comments:
Post a Comment