我需要帮助,当浏览器尺寸变小时,标题不会停留在正确的位置

http://eerlijkmbo.nl/

CSS:

#header {
    width:100%;
    max-width:420px;
    height:160px;
    overflow:hidden;
    margin:0 auto;
    -webkit-transition:all 0.8s ease;
}

最佳答案

您可以删除最大宽度以使其不流畅。然后将其插入到像#headerContainer这样的div中,并使其宽度为:420px;

07-24 17:43