EN
CSS - italic text
3 points
In this article, we would like to show how to italic text with CSS.
Quick solution:
xxxxxxxxxx
1
span {
2
font-style: italic;
3
}
The style property that makes the italic effect on text is font-style: italic
.
Practical example:
xxxxxxxxxx
1
2
<html>
3
<head>
4
<style>
5
6
span {
7
font-style: italic;
8
}
9
10
</style>
11
</head>
12
<body>
13
<p>Some text with <span>italic</span> element.</p>
14
</body>
15
</html>
Note:
You can also use the HTML solution from the following article: HTML - italic text.