デフォルトの状態。doubleの間が背景色で塗られる。
.default {
background-color: #eee;
}
background-*を組み合わせてごまかす。
.fixed {
background-image: linear-gradient(
top,
#eee 0,
#eee 100%
);
background-size: 100% 100%;
background-repeat: no-repeat;
}