Rendering of HTML elements..
Different operating systems have different "look and feel" of GUI elements, eg. button, textbox etc. Now when HTML page is requested on www from browsers across different operating systems, same HTML page is delivered to everybody independent of platform of user. how these HTML elements are delivered then?? e.g. in JAVA applets depending on platform JVM presents the look and feel of components in applets, how about browsers??!! :WAVE:
[438 byte] By [
premartha] at [2007-11-11 7:15:11]

# 1 Re: Rendering of HTML elements..
Java components are independent of the platform since the VM takes care of interpreting the byte code and executing the machine specific instructions. But there is a separate VM coded for each platform. The logic is similar with browsers... the browser interprets the HTML tags and renders the UI based on those. Each browser is coded for the particular environment with the rendering behaviour compliant to a defined set of rules / specifications. Of course, there are subtle differences in the way different browsers behave. :)