Final answer:
Wrapping is a property in computer programming that determines how text or content is displayed when it exceeds the width of a container element. The 'wrapping' property can take values of 'wrap' or 'nowrap', with 'wrap' allowing the content to go to the next line. To make items go to the next line, the 'wrap' value can be used with CSS properties like 'white-space: normal;' or 'word-wrap: break-word;'.
Step-by-step explanation:
Wrapping is a property in computer programming that determines how text or content is displayed when it exceeds the width of a container element.
The two main values that the 'wrapping' property can take are 'wrap' and 'nowrap'. When the value is 'wrap', the content will wrap to the next line when it exceeds the container's width. When the value is 'nowrap', the content will not wrap and will continue on a single line, potentially causing overflow.
To make items go to the next line, you can use the 'wrap' value for the 'wrapping' property. For example, in HTML, you can use the 'white-space: normal;' or 'word-wrap: break-word;' CSS properties to achieve wrapping.