Browser doesn't scale below 400px?

后端 未结 17 1349
天命终不由人
天命终不由人 2020-12-04 06:01

I\'m working on putting together a liquid style-sheet and it works wonderful. One thing that I\'ve noticed is that my browser window in Chrome won\'t resize below 400px it j

17条回答
  •  有刺的猬
    2020-12-04 06:51

    I am lazy, to make it even easier, let the bookmarklet ask the user for sizes :-D

    javascript: (function() {var width = prompt('Enter window width:', '320');var height = prompt('Enter window height:','480');var url = prompt('Enter window URL');if (url.indexOf(':') < 0) {url = 'http://'+url;} window.open(url, '','width='+width+',height='+height);})()
    

提交回复
热议问题