Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Mogwai7 said:Ah, and that just reminded me...
In case you don't already know, Internet Explorer is very bad at CSS support, so make sure you test it with Mozilla to get more accurate display results.
It's a common problem I see with people coding to more recent web standards...
Mogwai7 said:XHTML and CSS are not in infancy stages at all. The technology is widely adopted, you just need to know where to look...
The thing about XHTML is that they've removed a lot of the stuff that would be in HTML 4.01 and it is a lot more strict in formatting. (no <br> it would be <br />)
CSS is used for the formatting of these documents. And in my experience, any properly coded XHTML site with CSS displays a lot faster than any HTML 4.01 page. And if you code it properly (By hand, tools like Front Page add too much junk code) you will even reduce the site's size and reduce bandwidth costs.
And McKenna, give this a shot:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Test Document</title>
<style type="text/css">
<!--
body {
background: #ffffff;
color: #000000;
}
.floaterbox {
position: fixed;
width:95px;
height:200px;
}
-->
</style>
</head>
******> <!-- Lit cut out the body tag here :/ -->
<div class="floaterbox" style="top:30px;left:50px;border:#000055 thin outset;">
Testing<br />
This is a document test for a floating box.
</div>
<div class="floaterbox" style="top:30px;right:50px;border:#550000 thin outset;">
Testing 2<br />
This is a second floating box on the right side
</div>
</body>
</html>
And if you want, you can PM me, I'll be more than happy to help.![]()
Mogwai7 said:That is because IE is behind in CSS and XHTML support, Mozilla based browsers, Opera, and Konqueror/Geko are the leading browsers in supporting advanced web standards, which is being tought more and more in college courses.![]()