diff options
Diffstat (limited to 'old/css_compat/tests/vertical-align.html')
-rw-r--r-- | old/css_compat/tests/vertical-align.html | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/old/css_compat/tests/vertical-align.html b/old/css_compat/tests/vertical-align.html new file mode 100644 index 0000000..4ed3a30 --- /dev/null +++ b/old/css_compat/tests/vertical-align.html @@ -0,0 +1,69 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title>Vertical Align example</title> +<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> +<style type="text/css"> +* {margin:0;padding:0} + +</style> +</head> + +<body> +<hr> +<h1>Vertical align + <img style="vertical-align:top;" src="dillo1.png" /> + <img style="vertical-align:top;" src="dillo2.png" /> + <img style="vertical-align:top;" src="dillo3.png" /> + - top</h1> +<hr> +<h1>Vertical align + <img style="vertical-align:middle;" src="dillo1.png" /> + <img style="vertical-align:middle;" src="dillo2.png" /> + <img style="vertical-align:middle;" src="dillo3.png" /> + - middle</h1> +<hr> +<h1>Vertical align + <img style="vertical-align:baseline;" src="dillo1.png" /> + <img style="vertical-align:baseline;" src="dillo2.png" /> + <img style="vertical-align:baseline;" src="dillo3.png" /> + - baseline</h1> +<hr> +<h1>Vertical align + <img style="vertical-align:sub;" src="dillo1.png" /> + <img style="vertical-align:sub;" src="dillo2.png" /> + <img style="vertical-align:sub;" src="dillo3.png" /> + - sub</h1> +<hr> +<h1>Vertical align + <img style="vertical-align:super;" src="dillo1.png" /> + <img style="vertical-align:super;" src="dillo2.png" /> + <img style="vertical-align:super;" src="dillo3.png" /> + - super</h1> +<hr> +<h1>Vertical align + <img style="vertical-align:text-top;" src="green.png" /> + <img style="vertical-align:bottom;" src="dillo1.png" /> + <img style="vertical-align:bottom;" src="dillo2.png" /> + <img style="vertical-align:bottom;" src="dillo3.png" /> + - bottom</h1> +<hr> +<hr> +<h1>Vertical align + <img style="vertical-align:text-top;" src="green.png" /> + <img style="vertical-align:text-bottom;" src="dillo1.png" /> + <img style="vertical-align:text-bottom;" src="dillo2.png" /> + <img style="vertical-align:text-bottom;" src="dillo3.png" /> + - text-bottom</h1> +<hr> +<h1>Vertical align + <img style="vertical-align:super;" src="green.png" /> + <img style="vertical-align:text-top;" src="dillo1.png" /> + <img style="vertical-align:text-top;" src="dillo2.png" /> + <img style="vertical-align:text-top;" src="dillo3.png" /> + - text-top</h1> +<hr> + + +</body> +</html> |