|
CodeAve.com - CSS - Text Display | |||
|
|
|||
| First Line | ||||
|
|
||||
<html> <head> <title>CodeAve.com/CSS - First Letter</title> <style type="text/css"> <!-- /* The first line within p tags will be 200% larger then the rest of the text within */ P: first-line {font-size: 200%;} --> </style> </head> <body bgcolor="#FFFFFF"> <!-- Paragraph without a <br> tag within the the first line of text The length of the first line is decided by the width of the table or browser width happens first --> <p> Four score and seven years ago our fathers brought forth on this continent a new nation, conceived in liberty and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation or any nation so conceived and so dedicated can long endure. </p> <!-- Paragraph with a <br> tag within the the first line of text The length of the first line is decided by where the <br> is placed or if the table or browser width happens first --> <p> Four score and seven years ago<br> our fathers brought forth on this continent a new nation, conceived in liberty and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation or any nation so conceived and so dedicated can long endure. </p> </body> </html>
|
||||
|
|
||||