diff options
Diffstat (limited to 'old/css_compat/tests/text-align.html')
-rw-r--r-- | old/css_compat/tests/text-align.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/old/css_compat/tests/text-align.html b/old/css_compat/tests/text-align.html new file mode 100644 index 0000000..a37a38f --- /dev/null +++ b/old/css_compat/tests/text-align.html @@ -0,0 +1,41 @@ +<html> +<head> +<style type="text/css"> +.a {text-align: left} +.b {text-align: right} +.c {text-align: center} +.d {text-align: justified} +</style> +</head> +<body> + +<div class="a"> +left left left left left left left left left left left left left left +left left left left left left left left left left left left left left +left left left left left left left left left left left left left left +left left left left left left left left left left left left left left +left left left left left left left left left left left left left left +</div> +<div class="b"> +right right right right right right right right right right right right +right right right right right right right right right right right right +right right right right right right right right right right right right +right right right right right right right right right right right right +right right right right right right right right right right right right +</div> +<div class="c"> +center center center center center center center center center center center +center center center center center center center center center center center +center center center center center center center center center center center +center center center center center center center center center center center +center center center center center center center center center center center +</div> +<div class="d"> +justified justified justified justified justified justified justified justified +justified justified justified justified justified justified justified justified +justified justified justified justified justified justified justified justified +justified justified justified justified justified justified justified justified +justified justified justified justified justified justified justified justified +</div> +</body> +</html> |