Advertisement

07.08.2008 at 10:23AM PDT, ID: 23547481
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

CSS @media print problem with Internet Explorer

Asked by alanpollenz in Cascading Style Sheets (CSS), Hypertext Markup Language (HTML)

Tags: , ,

I am working on a project to take printed documents and turn them into web pages that, to the extent possible, are indentical in screen presentation and printed output to the original Word documents.

Getting them on the screen is no problem, and I've managed to use the @media print CSS feature to get Firefox to print it out virtually identical to the original document.

Internet Explorer (I've only tested v7 on 2 computers) is another story.  The print is very small, about 60% or so of the printed output from Firefox.

I've attached the code below, at least what I had completed so far.

Any ideas on why IE is not printing correctly?

Thanks in advance.

Alan Pollenz

** code moved to snippet - b0lsc0tt [ZAPE] **Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
@media screen {
	body {background-color:#ffffff; border-collapse:collapse; padding:2px; margin:2px;}
	p {font-size:13px; line-height:14px; font-family:"Arial Narrow";}
	h1{font-size:24px; line-height:28px; font-family:"Arial Narrow";}
	h2{font-size:18px; line-height:20px; font-family:"Arial Narrow";}
	table#container{width:980px; padding:0px; margin:0px;}
	table#header{width:980px; padding:0px; margin:0px;}
	table#headerleft{width:650px; padding:0px; margin:0px; border-collapse:collapse; font-size:18px; line-height:20px; font-family:"Arial Narrow"; font-weight:bold;}
	table#headerright{width:330px; padding:0px; margin:0px; border-collapse:collapse; font-size:13px; line-height:14px; font-family:"Arial Narrow"; font-weight:bold;}
	table.full{width:980px; padding:0px; margin:0px;}
	td.border{border:1px solid black;}
	td.alignright{text-align:right; padding: 1px 6px 1px 0px;}
	td.alignleft{text-align:left; padding: 1px 0px 1px 6px;}
	td.label{text-align:left; padding: 1px 0px 1px 0px; margin:0px; border-collapse:collapse; font-size:13px; line-height:14px; font-family:"Arial Narrow"; font-weight:bold;}
	td.data{text-align:left; padding: 1px 0px 1px 6px; margin:0px; border-collapse:collapse; font-size:13px; line-height:14px; font-family:"Arial Narrow";}
	.bold{font-weight:bold;}
	.underline{text-decoration: underline;}
	.italics{font-style:italic;}
	.response{text-align:left; padding: 1px 0px 1px 0px; margin:0px; border-collapse:collapse; font-size:13px; line-height:14px; font-family:"Arial Narrow"; font-weight:normal; text-decoration: underline;}
}
@media print {
	.hide{display:none;}
	body {background-color:#ffffff; border-collapse:collapse; padding:0px; margin:2px; max-width:980px; font-size:12pt;}
	p {font-size:10pt; line-height:11pt; font-family:"Arial Narrow", Arial, serif;}
	h1{font-size:16pt; line-height:18pt; font-family:"Arial Narrow";}
	h2{font-size:12pt; line-height:14pt; font-family:"Arial Narrow";}
	table#container{width:980px; padding:0px; margin:0px;}
	table#header{width:980px; padding:0px; margin:0px;}
	table#headerleft{width:600px; padding:0px; margin:0px; border-collapse:collapse; font-size:12pt; line-height:14pt; font-family:"Arial Narrow"; font-weight:bold;}
	table#headerright{width:380px; padding:0px; margin:0px; border-collapse:collapse; font-size:10pt; line-height:12pt; font-family:"Arial Narrow"; font-weight:bold;}
	table.full{width:980px; padding:0px; margin:0px; border-collapse:collapse;}
	td.border{border:1px solid black;}
	td.alignright{text-align:right; padding: 1px 6px 1px 0px;}
	td.alignleft{text-align:left; padding: 1px 0px 1px 6px;}
	td.label{text-align:left; padding: 1px 0px 1px 0px; margin:0px; border-collapse:collapse; font-size:10pt; line-height:12pt; font-family:"Arial Narrow"; font-weight:bold;}
	td.data{text-align:left; padding: 1px 0px 1px 6px; margin:0px; border-collapse:collapse; font-size:10pt; line-height:12pt; font-family:"Arial Narrow";}
	.bold{font-weight:bold;}
	.underline{text-decoration: underline;}
	.italics{font-style:italic;}
	.response{text-align:left; padding: 1px 0px 1px 0px; margin:0px; border-collapse:collapse; font-size:10pt; line-height:12pt; font-family:"Arial Narrow"; font-weight:normal; text-decoration: underline;}
}
</style>
</head>
<body>
<!-- Start Container -->
<table id="container">
	<tr>
		<td>
 
<!-- Start Page 1 -->
 
<!-- Start Header -->
			<table id="header">
				<tr>
					<td>
						<table id="headerleft">
							<tr valign="middle">
								<td>NORTH CAROLINA STATE UNIVERSITY<br>GRADUATE SCHOOL</td>
							</tr>
						</table>
					</td>
					<td>
						<table id="headerright">
							<tr>
								<td class="alignright">For Graduate School Use Only</td>
							</tr>
							<tr>
								<td class="border alignleft">Classification:</td>
							</tr>
							<tr>
								<td class="border alignleft">Residency Officer:</td>
							</tr>
							<tr>
								<td class="border alignleft">Date:</td>
							</tr>
						</table>
					</td>
				</tr>
			</table>
<!-- End Header -->
 
			<h1 align="center">NORTH CAROLINA RESIDENCE AND TUITION CLASSIFICATION APPLICATION</h1>
 
<!-- Start Introductory Text -->
			<p class="bold">Under North Carolina law, bona fide legal residents (domiciliaries) of North Carolina are eligible for a lower tuition rate than non-residents.  The controlling North Carolina statute requires students who wish to obtain the resident tuition classification to establish legal residence (domicile) in North Carolina and maintain that legal residence for at least 12 months immediately prior to obtaining the resident classification for tuition purposes.  General Statute 116-143.1 also establishes statutory definitions, rules and special provisions for determining resident status for tuition purposes.</p>
			<p class="bold">The law requires that every student admitted or re-admitted to the University be classified as a resident or non-resident for tuition purposes prior to enrollment.  The law also allows students admitted as non-residents to later apply for the resident tuition classification.  To be classified as a resident for tuition purposes, you must furnish such evidence as the University may require to enable it to make that classification.</p>
			<p class="bold">To petition for reclassification of your tuition status, complete this Residence and Tuition Classification Application, answering all questions completely and accurately to the best of your knowledge and understanding.  This application may require supporting documentation.  Once you submit the online application, a list of your required documentation will appear with your confirmation page.  Your application is not complete and your status will not be reviewed until the Graduate School receives both the submitted electronic application and your supporting documentation. The Graduate School may require additional information or documentation that is not specifically requested in this application to make the most accurate tuition classification for you.</p>
			<p class="bold">Your complete <span class="italics">Residence and Tuition Classification Application</span> and all supporting documentation must be received in the Graduate School by the last day of the semester or session for which your are applying for the resident tuition classification.</p>
<!-- End Introductory Text -->
 
<!-- Start Preliminary Table -->
			<table class="full">
				<tr valign="top">
  					<td class="label" width="500">Requested Effective Term: <span class="response"><& Term &></span> Year: <span class="response"><& Year &></span></td>
  					<td class="label">Academic Department: <span class="response"><& Academic Department &></span></td>
				</tr>
				<tr valign="top">
  					<td class="label">Applicants Full Name: <span class="response"><& Applicants Full Name &></span></td>
  					<td class="label">Date of Birth: <span class="response"><& Date of Birth &></span></td>
				</tr>
				<tr valign="top">
  					<td class="label">Student ID Number: <span class="response"><& Student ID Number &></span></td>
  					<td class="label">E-mail Address: <span class="response"><& E-mail Address &></span></td>
				</tr>
			</table>
<!-- End Preliminary Table -->
 
<!-- Start Current Mailing Address Table -->
			<table class="full">
				<tr valign="top">
  					<td width="200"></td>
  					<td width="300"></td>
  					<td width="250"></td>
  					<td></td>
				</tr>
				<tr valign="top">
  					<td class="label" colspan="4">Current mailing address:</td>
				</tr>
				<tr valign="top">
  					<td class="response" colspan="2"><& Current Street Address &></td>
  					<td class="response"><& Current City &></td>
  					<td class="response"><& Current State &></td>
				</tr>
				<tr valign="top">
  					<td class="label" colspan="2">Street Address or PO Box</td>
  					<td class="label">City</td>
  					<td class="label">State or Foreign Country</td>
				</tr>
				<tr valign="top">
  					<td class="response"><& Current Zip &></td>
  					<td class="response"><& Current County &></td>
  					<td class="label" colspan="2">Telephone: <span class="response"><& Current Telephone &></span></td>
				</tr>
				<tr valign="top">
  					<td class="label">Zip</td>
  					<td class="label" colspan="3">County (if address is in NC)</td>
				</tr>
			</table>
<!-- End Current Mailing Address Table -->
 
<!-- Start Permanent Home Address Table -->
			<table class="full">
				<tr valign="top">
  					<td width="200"></td>
  					<td width="300"></td>
  					<td width="250"></td>
  					<td></td>
				</tr>
				<tr valign="top">
  					<td class="label" colspan="4">Permanent home street address (if different from above):</td>
				</tr>
				<tr valign="top">
  					<td class="response" colspan="2"><& Permanent Street Address &></td>
  					<td class="response"><& Permanent City &></td>
  					<td class="response"><& Permanent State &></td>
				</tr>
				<tr valign="top">
  					<td class="label" colspan="2">Street Address</td>
  					<td class="label">City</td>
  					<td class="label">State or Foreign Country</td>
				</tr>
				<tr valign="top">
  					<td class="response"><& Permanent Zip &></td>
  					<td class="response"><& Permanent County &></td>
  					<td class="label" colspan="2">Telephone: <span class="response"><& Permanent Telephone &></span></td>
				</tr>
				<tr valign="top">
  					<td class="label">Zip</td>
  					<td class="label" colspan="3">County (if address is in NC)</td>
				</tr>
			</table>
<!-- End Permanent Home Address Table -->
 
<!-- Start Last Address in NC Table -->
			<table class="full">
				<tr valign="top">
  					<td width="148"></td>
  					<td width="48"></td>
  					<td width="98"></td>
  					<td width="198"></td>
  					<td width="48"></td>
  					<td width="198"></td>
  					<td></td>
				</tr>
				<tr valign="top">
  					<td class="label" colspan="7">Last previous home street address <span class="italics">in</span> NC:</td>
				</tr>
				<tr valign="top">
  					<td class="response" colspan="4"><& Previous In Street Address &></td>
  					<td class="response" colspan="2"><& Previous In City &></td>
  					<td class="response"><& Previous In State &></td>
				</tr>
				<tr valign="top">
  					<td class="label" colspan="4">Street Address</td>
  					<td class="label" colspan="2">City</td>
  					<td class="label">State</td>
				</tr>
				<tr valign="top">
  					<td class="response"><& Previous In Zip &></td>
  					<td class="response" colspan="2"><& Previous In County &></td>
  					<td class="label" colspan="2">From (date): <span class="response"><& Previous In From (date) &></span></td>
  					<td class="label" colspan="2">To (date): <span class="response"><& Previous In To (date) &></span></td>
				</tr>
				<tr valign="top">
  					<td class="label">Zip</td>
  					<td class="label" colspan="6">County</td>
				</tr>
			</table>
<!-- End Last Address in NC Table -->
 
<!-- Start Last Address Outside NC Table -->
			<table class="full">
				<tr valign="top">
  					<td width="148"></td>
  					<td width="48"></td>
  					<td width="98"></td>
  					<td width="198"></td>
  					<td width="48"></td>
  					<td width="198"></td>
  					<td></td>
				</tr>
				<tr valign="top">
  					<td class="label" colspan="7">Last previous home street address <span class="italics">outside</span> NC:</td>
				</tr>
				<tr valign="top">
  					<td class="response" colspan="4"><& Previous outside Street Address &></td>
  					<td class="response" colspan="2"><& Previous outside City &></td>
  					<td class="response"><& Previous outside State &></td>
				</tr>
				<tr valign="top">
  					<td class="label" colspan="4">Street Address</td>
  					<td class="label" colspan="2">City</td>
  					<td class="label">State or Country</td>
				</tr>
				<tr valign="top">
  					<td class="response" colspan="3"><& Previous outside Zip &></td>
  					<td class="label" colspan="2">From (date): <span class="response"><& Previous outside From (date) &></span></td>
  					<td class="label" colspan="2">To (date): <span class="response"><& Previous outside To (date) &></span></td>
				</tr>
				<tr valign="top">
  					<td class="label" colspan="7">Zip</td>
				</tr>
			</table>
<!-- End Last Address Outside NC Table -->
 
 
		</td>
	</tr>
</table>
<!-- End Container -->
 
</body>
</html>
 
Loading Advertisement...
 
[+][-]07.08.2008 at 10:39AM PDT, ID: 21956137

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.08.2008 at 10:49AM PDT, ID: 21956227

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.09.2008 at 12:31AM PDT, ID: 21961279

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.09.2008 at 01:48AM PDT, ID: 21961564

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.09.2008 at 02:24AM PDT, ID: 21961712

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.15.2008 at 11:15AM PDT, ID: 22009370

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Cascading Style Sheets (CSS), Hypertext Markup Language (HTML)
Tags: html/css, Internet Explorer, http://www.webgrafxx.com/ncsu.html
Sign Up Now!
Solution Provided By: alanpollenz
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628