Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Is a PRE Tag/Element
What Is a PRE Tag/Element? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags
✍: FYIcenter.com
A pre element is a block level element that can be used directly as a sub-element in the body element. You can use pre elements to specify blocks of pre-formatted text with white space characters preserved. Here are basic rules about pre elements:
Here is a good example of pre elements:
<body>
<pre>
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
</pre>
</body>
2007-05-12, 4998👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
How to create arrays in JavaScript? We can declare an array like this var scripts = new Array(); We ...
What will be printed as the resultof the operation below: int x; int modifyvalue() { return(x+=10); ...
What is the difference between Session State and ViewState? ViewState is specific to a page in a ses...
What is the benefit of using an enum rather than a #define constant? The use of an enumeration const...