如何从我的谷歌Chrome打包应用内容中删除所有保证金和填充?

时间:2015-12-12 08:49:21

标签: google-chrome google-chrome-app

This page says(三地):

  

请注意,内边界和外边界之间的填充由操作系统确定。

我想从Chrome应用的界限(f / k /谷歌Chrome打包应用程序)中删除所有填充和边距。在某些圈子中,此效果称为 fullbleed 。换句话说,我希望内容触摸屏幕或视口的所有边缘。

我如何做到这一点?或者这是不可能的?

注意:我在风格属性中使用负边距和填充的下面的黑客就是这样。一个黑客。但是,如果你不能给我一个合适的解决方案,我会采取一种比我迄今为止更好的黑客攻击。

background.js
╔══════╦═══════════╦════════╦══════╦═════╦══════╦═══════╦═════╦═══════╗
║ pid  ║    loc    ║  avaId ║ xpId ║ qf  ║ sid  ║ name2 ║ wid ║ name3 ║
╠══════╬═══════════╬════════╬══════╬═════╬══════╬═══════╬═════╬═══════╣
║ 1000 ║ Bangalore ║     30 ║    9 ║ ABC ║ 1    ║ name1 ║   2 ║ D1    ║
║ 1000 ║ Bangalore ║     30 ║    9 ║ ABC ║ 8    ║ name2 ║   1 ║ D2    ║
║ 1000 ║ Bangalore ║     30 ║    9 ║ ABC ║ 7    ║ name3 ║   3 ║ D3    ║
║ 1000 ║ Bangalore ║     30 ║    9 ║ ABC ║ NULL ║ NULL  ║   4 ║ D4    ║
╚══════╩═══════════╩════════╩══════╩═════╩══════╩═══════╩═════╩═══════╝
window.html
chrome.app.runtime.onLaunched.addListener(function() {
    chrome.app.window.create('window.html', {
        'outerBounds': {
            'width': 400,
            'height': 500,
        },
        'state': 'fullscreen'
    });
});

1 个答案:

答案 0 :(得分:2)

window.html
.paragraph {
    white-space: nowrap;
    overflow: hidden;
}