mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
21 lines
731 B
HTML
21 lines
731 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html lang="en">
|
|
<head>
|
|
<title>CSS Test: border-color shorthand (basic)</title>
|
|
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
|
|
<link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/border/color/003.html" type="text/html">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-shorthand-properties">
|
|
<link rel="match" href="reference/border-shorthands-003-ref.htm">
|
|
|
|
<style type="text/css">
|
|
.test { border-top: solid 1em; }
|
|
div { color: green; border-color: red; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>There should be a green bar below.</p>
|
|
<div class="test"></div>
|
|
|
|
|
|
</body>
|
|
</html> |