标签:使用 java代码 str int 分享 class rgs http bsp
有时候,需要在网页上显示代码,比如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>
效果:
标签:使用 java代码 str int 分享 class rgs http bsp
原文地址:http://www.cnblogs.com/thiaoqueen/p/6851303.html