diff --git a/content/css/concepts/overflow/overflow.md b/content/css/concepts/overflow/overflow.md index 140e9411c5e..aea41c7c0ea 100644 --- a/content/css/concepts/overflow/overflow.md +++ b/content/css/concepts/overflow/overflow.md @@ -1,6 +1,6 @@ --- Title: 'Overflow' -Description: 'The overflow property controls what happens to content that spills, or overflows, outside its box. The most commonly used values are: - hidden When set to this value, any content that overflows will be hidden from view. - scroll: When set to this value, a scrollbar will be added to the element’s box so that the rest of the content can be viewed by scrolling. - visible: When set to this value, the overflow content will be displayed outside of the containing element. Note, this is the default value. css p {' +Description: 'The overflow property controls what happens to content that spills, or overflows, outside its box.' Subjects: - 'Web Development' - 'Web Design' @@ -16,7 +16,7 @@ The `overflow` property controls what happens to content that spills, or overflo The most commonly used values are: -- `hidden` When set to this value, any content that overflows will be hidden from view. +- `hidden`: When set to this value, any content that overflows will be hidden from view. - `scroll`: When set to this value, a scrollbar will be added to the element’s box so that the rest of the content can be viewed by scrolling. - `visible`: When set to this value, the overflow content will be displayed outside of the containing element. Note, this is the default value.