> Images beyond Browser Window?

Images beyond Browser Window?

Posted at: 2014-12-18 
There's a CSS property called overflow, you can set it to hidden.

Try something like this:

#content {

max-width: 100%;

overflow: hidden;

}

Is there a way with HTML to cut off images that go beyond the browser window? I know there is a CSS background property. But I want to have multiple images on a page that all get cut off / are treating as if they're background images... as in NOT creating scroll bars when they go beyond the window.