How do you make a webpage change its width automatically?

后端 未结 8 1165
故里飘歌
故里飘歌 2021-01-23 00:26

In HTML, is there a way to make a webpage expand to the user\'s monitor? Like say I have a 15inch, but someone else has a 24 inch. The webpage would be small on their screen,

8条回答
  •  孤独总比滥情好
    2021-01-23 00:48

    In your html:

    Then in your css:

    #content {
        width:100%;
    }
    

    or for more control:

    #content {
        min-width:500px;
        max-width:1000px;
    }
    

提交回复
热议问题