Pages are used to create the page tree.
Defining the page tree from the TYPO3 documentation:
The page tree represents the hierarchical structure of your pages. In most cases, this closely matches the navigation structure of your website. You can expand the page tree by clicking the small arrows on> to the left of the elements.
Content elements are just different types of content ... elements. In TYPO3 there are various types of content elements: - text - which allows you to insert only text - textpic - a combination of text and image with various combinations of layouts between text and image - files - allows you to upload files to your page - html - type of content element that allows you to insert simple HTML snippet
In the TYPO3 CMS, a content editor adds content to a page using various content elements.
For more information, visit the TYPO3 documentation website.
Database context
"pages" and "tt_content" are also table names in the CMS TYPO3 database. "pages" store information about a single page, and "tt_content" stores information about a single content item.
TypoScript Context
In TypoScript, "tt_content" is an object that represents the default rendering of a CONTENT object. Elements of paricular content, such as text or text, inherit some default settings from tt_content. Therefore, it is the parent of all content elements.
Read more about TypoScript and css_styles_content for more information.
source share