NEW
Font size
WorksheetsCSS Quiz 4
Total questions: 10
Worksheet time: 5mins
The CSS overflow property controls what happens to content that is too big to fit into an area.
True
False
Which of the following values does not belong to the overflow property?
visible
hidden
scroll
invisible
By default, the overflow is visible, meaning that the extra content is not clipped and it renders outside the element's box.
True
False
With the hidden value, the overflow is not clipped, and the rest of the content is not hidden from view in the browser.
True
False
Setting the value to scroll, the overflow is clipped and a scrollbar is added to scroll inside the box.
True
False
The auto value is similar to scroll, but it adds scrollbars only when necessary.
True
False
The CSS float property specifies how an element should float.
True
False
The CSS clear property erases text.
True
False
Which of these values does not belong to the float property?
left
right
middle
inherit
In its simplest use, the float property can be used to wrap text around images.
True
False
