diff options
Diffstat (limited to 'Base')
-rw-r--r-- | Base/home/anon/www/borders.html | 27 | ||||
-rw-r--r-- | Base/home/anon/www/welcome.html | 1 |
2 files changed, 28 insertions, 0 deletions
diff --git a/Base/home/anon/www/borders.html b/Base/home/anon/www/borders.html new file mode 100644 index 0000000000..b7de94b89b --- /dev/null +++ b/Base/home/anon/www/borders.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> +<head> +<title>CSS borders lookin' good</title> +<style> +#foo { + border-top-color: red; + border-right-color: lime; + border-bottom-color: blue; + border-left-color: yellow; + + border-top-width: 40px; + border-right-width: 30px; + border-bottom-width: 20px; + border-left-width: 10px; + + border-top-style: solid; + border-right-style: solid; + border-bottom-style: solid; + border-left-style: solid; +} +</style> +</head> +<body> +<div id="foo">One day at a time!</div> +</body> +</html> diff --git a/Base/home/anon/www/welcome.html b/Base/home/anon/www/welcome.html index dd95f34c96..27a1e36cff 100644 --- a/Base/home/anon/www/welcome.html +++ b/Base/home/anon/www/welcome.html @@ -24,6 +24,7 @@ h1 { <p>Some small test pages:</p> <ul> <li><a href="small.html">small</a></li> + <li><a href="borders.html">borders</a></li> <li><a href="css.html">css</a></li> <li><a href="attrselectors.html">attribute selectors</a></li> <li><a href="lorem.html">lorem ipsum</a></li> |