How to implement a web page that scales when the browser window is resized?

后端 未结 11 846
伪装坚强ぢ
伪装坚强ぢ 2020-12-29 15:42

How to implement a web page that scales when the browser window is resized?

I can lay out the elements of the page using either a table or CSS float sections, but i

11条回答
  •  北海茫月
    2020-12-29 16:01

    instead of using in css say "width: 200px", use stuff like "width: 50%"

    This makes it use 50% of whatever it's in, so in the case of:

    
     

    The div will now always take up half the window horizontaly.

提交回复
热议问题