How to make your website works on a projector?
I have a presentation tomorrow, and while I was trying to project my website using projector
all the elements appeared mixed up. The problem is I used a software called "AXURE" to do the website. The HTML files produced by this software are crap. There's no one unified CSS file. The style is embedded for each element in the <div>
tag and every element is positined by absolute pixels. How can make my website works on larger sc开发者_StackOverflow社区reens?
Short answer: You can't. Inline style elements take precedence over the other stylesheet declarations. Especially if none of the elements have classes or id's in them. Possibly look up the documentation on AXURE to see if it provides a method for formatting to larger displays.
You could just make the resolution on the projector really small (like 800x600 or whatever AXURE used... Not a viable long-term solution, but good in a crunch like this
精彩评论