0

我正在尝试一个位置:固定;#header 100% 宽度和 50px 最大高度。在大多数网络浏览器的全屏上,我无法保证#header 中的布局内容是一致的,但是,它很可能适合页面。然而,更大的担忧是,在调整大小后,内容看起来会一团糟。有没有人有一种他们喜欢的方法来扩展这些内容?

这是我正在做的一个小的基本示例

/* --- Footer/Header Area --- */ 
#footer {
height: 70px;
max-height: 70px;
width: 100%;
position: absolute;
background-color: #eee

}

#header {

background-color: #fff;
height: 50px;
max-height: 50px;
line-height: 45px;
width: 100%;
position: fixed;
top: 0;
float:left;
box-shadow: 2px 4px 5px #555;

}



#header img {

/* --- TOGOHERE: >>>> margin: 10px 30px 0 --- */

}

#header h1 {
display:inline-block;
font-size: 1.2em;
font-family:Courier New;
text-align: left;

} 

#header h2 {
display:inline-block;
font-size: x-small;
font-family: Tahoma;
text-align: center;
padding-right:2cm;
}

#header h3 {
display:inline-block;
font-size: xx-small;
font-family: Tahoma;
text-align: center;
padding-right:2cm;
}
4

1 回答 1

0

您不能为每个媒体查询使用替代容器大小吗?一种用于大屏幕,一种用于中型,一种用于小屏幕,一种用于超小屏幕。

于 2013-10-01T10:16:50.497 回答