CSS Overflow Property
The overflow property decides what to do if the content inside an element exceeds the given width and height properties.
You can use the overflow property when you want to have better control of the layout. The overflow properties include: visible, scroll, auto or hidden. The default value is visible.
1
2
3
4
5
6
7
8
.news { background-color: #cccccc; width: [...]
↧