CSS font-style Property

CSS font-style property is used to italicize the text. It basically specifies how much slant or sloped a text should appear.

The example below sets different font-style for each paragraph:

Example:

.p1{
  font-style: normal;
}
.p2{
  font-style: italic;
}
.p3{
  font-style: oblique;
}

CSS Syntax

The font-style property has the following syntax:

font-style: normal|italic|oblique|initial|inherit;

Property Values

The font-style property accepts the following values:

normalThis is the default value. The text is displayed normally.
italicThe text is slightly slanted.
obliqueThe text is more slanted than italic.
initialSets the font-style property to its default value(normal).
inheritInherits the font-style property from the parent element.

General Info

Default Valuenormal
InheritedYes
JavaScript Usageelement.style.fontStyle = “italic”;

Author

  • Manoj Kumar

    Hi, My name is Manoj Kumar. I am a full-stack developer with a passion for creating robust and efficient web applications. I have hands-on experience with a diverse set of technologies, including but not limited to HTML, CSS, JavaScript, TypeScript, Angular, Node.js, Express, React, and MongoDB.

    View all posts