📜  W3.CSS 代码

📅  最后修改于: 2021-08-31 07:54:44             🧑  作者: Mango

W3.CSS 提供了几个用于显示内联和多行代码块的类。

显示内联代码:内联代码应该用 w3-codespan作为类包裹在 标签中。生成的文本将以固定宽度的字体显示,并给出带有浅灰色背景的红色字体颜色。

注意: <>标签应替换为<>分别。

例子:

HTML


  

  
    
    
  

  

    
    
    
                             

            GeeksForGeeks         

    
            
        

Inline Code:

           

            We define paragraphs in HTML using the             

tag.         

    
  


HTML


  

  
    
    
  

  

    
    
    
                             

            GeeksForGeeks         

    
            
        

            Multiline Code Block:         

                   
                         

Title One


              

A line of sample text

              

Another line of sample              text


Yet another              line of sample text

                     
    
  


输出:

显示多行代码块:多行代码应该包含在带有w3-code类的

标签中。生成的文本将以可读的等宽字体显示,并保留空格和换行符。

注意: <>标签应替换为<>分别。

例子:

HTML



  

  
    
    
  

  

    
    
    
                             

            GeeksForGeeks         

    
            
        

            Multiline Code Block:         

                   
                         

Title One


              

A line of sample text

              

Another line of sample              text


Yet another              line of sample text

                     
    
  

输出: