css - Adding a scroll bar if div extends below bottom of view port -


i have <div> in page contains <table> of varying number of rows, i.e varying height:

<html> <head></head> <body>  <div>   <table>      <tr>...      <tr>...      ...   </table> </div>  </body> </html> 

at moment if table content long enough, div extends below bottom of page (view port). want stop div extending below bottom of page, , add scroll bar. can add scroll bars if div height fixed no problem overflow: scroll. want div height fit user has sized browser window.

any ideas how achieve this? not care or need div extend bottom of page if there no table content. preferably pure css solution opposed using javascript fix div height.

thanks

how wrapper overflow auto , 100% trickery. i.e. variant of this:

<!doctype html>  <html lang="en">      <head>          <meta charset="utf-8"/>          <title>100% thing</title>          <style>            * {             margin: 0;             padding: 0;           }           html, body {             height: 100%;             overflow: hidden;           }           #wrapper {             height: 100%;             width: 200px;             overflow: auto;           }         </style>      </head>      <body>          <div id="wrapper">              <div id="content">                  <p>to sherlock holmes <i>the</i> woman. have seldom heard him mention under other name. in eyes eclipses , predominates whole of sex. not felt emotion akin love irene adler. emotions, , 1 particularly, abhorrent cold, precise admirably balanced mind. was, take it, perfect reasoning , observing machine world has seen, lover have placed himself in false position. never spoke of softer passions, save gibe , sneer. admirable things observer&#8212;excellent drawing veil men&#8217;s motives , actions. trained reasoner admit such intrusions own delicate , finely adjusted temperament introduce distracting factor might throw doubt upon mental results. grit in sensitive instrument, or crack in 1 of own high-power lenses, not more disturbing strong emotion in nature such his. , yet there 1 woman him, , woman late irene adler, of dubious , questionable memory. <p>  had seen little of holmes lately. marriage had drifted away each other. own complete happiness, , home-centred interests rise around man first finds himself master of own establishment, sufficient absorb attention, while holmes, loathed every form of society whole bohemian soul, remained in our lodgings in baker street, buried among old books, , alternating week week between cocaine , ambition, drowsiness of drug, , fierce energy of own keen nature. still, ever, attracted study of crime, , occupied immense faculties , extraordinary powers of observation in following out clues, , clearing mysteries had been abandoned hopeless official police. time time heard vague account of doings: of summons odessa in case of trepoff murder, of clearing of singular tragedy of atkinson brothers @ trincomalee, , of mission had accomplished delicately , reigning family of holland. beyond these signs of activity, however, merely shared readers of daily press, knew little of former friend , companion. <p>  1 night&#8212;it on twentieth of march, 1888&#8212;i returning journey patient (for had returned civil practice), when way led me through baker street. passed well-remembered door, must associated in mind wooing, , dark incidents of study in scarlet, seized keen desire see holmes again, , know how employing extraordinary powers. rooms brilliantly lit, and, looked up, saw tall, spare figure pass twice in dark silhouette against blind. pacing room swiftly, eagerly, head sunk upon chest , hands clasped behind him. me, knew every mood , habit, attitude , manner told own story. @ work again. had risen out of drug-created dreams , hot upon scent of new problem. rang bell , shown chamber had formerly been in part own.             </div>          </div>      </body>  </html> 

see demonstration @ jsfiddle.


Comments

Popular posts from this blog

400 Bad Request on Apache/PHP AddHandler wrapper -

Add email recipient to all new Trac tickets -

php - Change action and image src url's with jQuery -