缩放整个屏幕

时间:2016-09-22 08:48:53

标签: html css screen-resolution

我的网站有一个标题,当用户放大我的网站时,其标题也会放大并可能遮挡整个屏幕。 所有其他事情都运作良好。我的css代码是:

#header {
    position: fixed;
    height: auto;
    width: 100%;
    z-index: 100
}
body {
  padding-left: 11em;
  font-family: Georgia, "Times New Roman",
        Times, serif;
  color: purple;
  background-color: #d8da3d }
 sidebar { 
  width: 190px; 
  position: fixed; 
  margin-left: 410px; 
}
footer { background-color:Black; color: #fff; text-align: center; position:absolute; width:100%; }

1 个答案:

答案 0 :(得分:1)

你可以这样做:

#header {
  position: fixed
}

@media screen and (max-width: 500px) {
/* applies only if the screen is narrower than 500px */
  #header {
    position: static
  }
}