📜  如何在 CSS 中将文本变为斜体?

📅  最后修改于: 2022-05-13 01:56:42.760000             🧑  作者: Mango

如何在 CSS 中将文本变为斜体?

在本文中,我们将了解如何使用 CSS 使文本变为斜体。为了使任何网页中的文本斜体,使用 CSS font-style属性。我们有多种选项可以将其设置为斜体文本。

  • normal:正常字体样式。它与 400 相同,即粗体的默认数值。
  • 粗体: 是粗体字体样式。与700相同。
  • 斜体:它是 草书字体样式。

方法: CSS中的font-style属性有正常、斜体粗体三个值。 CSS 值italic用于将文本设置为斜体。

句法:

font-style: italic;

例子:

HTML


  

    
    
  
    
  
    
    

  

    

        GeeksForGeeks | A Computer Science          Portal for Geeks     

       

        This platform has been designed for          every geek wishing to expand their         knowledge, share their knowledge and          is ready to grab their dream job. We         have millions of articles, live as          well as online courses, thousands of         tutorials and much more just for the          geek inside you.     

       

        Thank You for choosing and supporting us!     

  


注意:当您将使用外部 CSS 文件时,请始终为您的网页使用一些默认 CSS,此默认 CSS 写在 * { } 选择器中。这将从您的网页中删除默认 CSS。

输出:现在,正如您在输出中看到的那样,我们使用 CSS 在网页中创建了一个斜体文本,这将吸引读者阅读网页上的内容。