Click here to Skip to main content
15,890,512 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to develop a webrowser have a quick launch page like opera,so i used 6 web browser control, and i want to adjust the webpage according to it size of the panel which it contains

MIDL
queryAddress.Append("http://www.google.com");
           webBrowser1.Navigate(queryAddress.ToString());
Posted
Updated 28-Mar-11 6:05am
v2

1 solution

Are you aware the IE won't zoom a page where the fonts are hard-coded in css? For instance,

CSS
font-size:12px;


won't be affected, but

CSS
font-size:100em;


will be.

You simply can't rely on a page that YOU didn't code to have been implemented with best practices in mind.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900