预格式

Posted Rainyn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了预格式相关的知识,希望对你有一定的参考价值。

有时候,需要在网页上显示代码,比如java代码 

就需要用到pre。

<p>这里是没有用预格式的情况:</p>

public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello World");
    }
}

<br/>
<br/>

<p>使用预格式的情况:</p>

<pre>
public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello World");
    }
}

</pre>

效果:

 

 

以上是关于预格式的主要内容,如果未能解决你的问题,请参考以下文章