Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是CSS:
.container{ background-image:url('images/containerbg.png'); background-repeat:no-repeat; width:1078px; background-color: #000; margin:0 auto 0 auto; position:relative; }
这是正在发生的事情的图片:
尝试使用overflow: hidden:
overflow: hidden
.container { overflow: hidden; // or overflow: auto; .... }