
Originally Posted by
xeonman13
Is CSS the right way to go about this? Example.
I need student name 40px from the top of the page and 100px from the left of the page.
... Should i create DIVs first and then style text after?
That sounds viable. Wrap all of the content in a div with a top margin of 40px and left margin of 100px, then put the content inside there.
Make sure to put these styles in a print style sheet, though:
Code:
<link rel="stylesheet" type="text/css" media="print" href="print.css">
Bookmarks