2015-10-13 47 views
0

我正在製作一個移動網站,並且需要頂部橫幅完全水平覆蓋頁面,並且垂直不會在頂部顯示空白區域。當我管理禁用水平滾動時,我無法讓我的橫幅成爲我所需要的。頁邊距不能與overflow-x一起使用?

<!DOCTYPE HTML> 
<html> 

<head> 
    <style> 
html, 
body { 
    overflow-x: hidden; 
} 
#box { 
    width: 110%; 
    background-color: blue; 
    height: 15px; 
} 
    </style> 
    <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0" /> 
    <meta name="apple-mobile-web-app-capable" content="yes" /> 
</head> 
<title>testing</title> 

<body> 
    <div id="box"></div> 
</body> 

</html> 

Here's the fiddle.我基本上需要圍繞藍框的空白區域消失。

回答

0

那麼,藍框周圍的空白區域就是body和html元素的邊界。只需在body和html上設置邊距爲零。

0

試試這個:

HTML

<div id="box"></div> 

CSS

html, 
body { 
    overflow-x: hidden; 
    margin: 0; /*added line*/ 
} 
#box { 
    width: 110%; 
    background-color: blue; 
    height: 15px; 
} 

還望jsfiddle例子。對於將來你不需要在jsfiddle中聲明<html><body><head>標籤。

0

下面是從meyerweb良好的CSS重置,

/* http://meyerweb.com/eric/tools/css/reset/ 
    v2.0 | 20110126 
    License: none (public domain) 
*/ 

html, body, div, span, applet, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, 
a, abbr, acronym, address, big, cite, code, 
del, dfn, em, img, ins, kbd, q, s, samp, 
small, strike, strong, sub, sup, tt, var, 
b, u, i, center, 
dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, 
time, mark, audio, video { 
    margin: 0; 
    padding: 0; 
    border: 0; 
    font-size: 100%; 
    font: inherit; 
    vertical-align: baseline; 
} 
/* HTML5 display-role reset for older browsers */ 
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { 
    display: block; 
} 
body { 
    line-height: 1; 
} 
ol, ul { 
    list-style: none; 
} 
blockquote, q { 
    quotes: none; 
} 
blockquote:before, blockquote:after, 
q:before, q:after { 
    content: ''; 
    content: none; 
} 
table { 
    border-collapse: collapse; 
    border-spacing: 0; 
} 

將這個在您的樣式上,剛剛開幕式的標記之後。之後,除非你有一個非常特殊的目的(也就是一個複雜的應用程序需要修改/改進),否則不要使用超過100%的任何值,即使在最可怕的情況下我也不會使用它(我知道它很難辦法)。

當你設置你的重置後,一切都顯得更加理智和正常,它應該有助於你更好地理解css,也就是說,它並不總是理性的。乾杯!