Course Content
CSS Fundamentals
1. Introduction to CSS
CSS Fundamentals
Text Styling
text-decoration
The text-decoration
property can be applied to any text content, including links, headings, paragraphs, and lists. It adds line effects such as underlining. Common values:
Let's run the following example and see the difference between all the property values.
index.html
index.css
index.js
text-transform
The text-transform
property allows us to change the capitalization of text content in HTML elements.
Let's consider the difference between all the property values:
index.html
index.css
index.js
text-align
The text-align
property allows you to horizontally align text content.
index.html
index.css
index.js
What CSS property allows to change the capitalization of text content?
Select the correct answer
What CSS property allows to horizontally align text content?
Select the correct answer
What CSS property allows you to add visual effects to the text content, such as underline or strike-through?
Select the correct answer
Everything was clear?