我面临重新创建某个网站的挑战,但我不确定创建全宽跨浏览器模板的最佳方法是什么。我将使用 HTML 5,到目前为止我有:
我只使用 100% 作为宽度吗?
HTML
<div id="wrapper">
<header>
<h1>Logo Position</h1>
</header>
CSS:
#wrapper{
width:990px;
height:100%;
min-height:100%;
background:#000;
}
header{
width:100%;
height:100px;
color:#184C82;
}