1

私のフィドル:

http://jsfiddle.net/kpdgQ/16/

オレンジ色のキャンバスの下に小さなスペースがある垂直スクロール バーがあるのはなぜですか?

<div>
    <canvas></canvas>
</div>

div {   
    height:100%;
    width:100%;   
    background:blue;
}
canvas {
    background-color: orange;
    width:100%;
    height:100%;
}
html,body{
    height:100%;
    width:100%;
}

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;
}

body {
    line-height: 1;
}
4

3 に答える 3

2

キャンバスにはデフォルトで display:inline があります..それを display:block に変更すると、正常に表示されるはずです..(同じケースはすべての画像にあります..)

于 2013-09-24T10:15:33.940 に答える