javascript - Table and table content should resize in HTML according to device screen -


i new html , designing page picks files directory. column contains checkbox selecting files. when open page mobile browser, table size not change, hence need maximize table manually. there way in html can render table according browser sizes? tried googling same in vain. great if redirects me concept.thanks in advance!

what looking called responsive web design.there few possible ways it. can select according need

  1. you can use media queries in define different stylesheets different screens. used way currently.
    sneak peek: http://css-tricks.com/css-media-queries/ , https://developer.mozilla.org/en-us/docs/web/guide/css/media_queries

  2. you can use viewport meta tag.
    sneak peek:https://developer.mozilla.org/en/docs/mozilla/mobile/viewport_meta_tag

  3. you can design in % (fluid responsive) part tricky. experience can designing full website giving in % difficult.

i suggest learn media query. quite simple , reliable.


Comments

Popular posts from this blog

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -