Test file for asymmetric border color

This commit is contained in:
Sangeun Kim 2013-08-20 08:54:52 +09:00
parent 3616c033d6
commit 3e74538b8b

View file

@ -0,0 +1,15 @@
<HTML>
<HEAD>
<TITLE>Examples of margins, padding, and borders</TITLE>
<STYLE type="text/css">
LI.withborder {
border-style: dashed;
border-width: 10px;
border-color: yellow black red green;
}
</STYLE>
</HEAD>
<BODY>
<LI class="withborder">Second element of list is a bit longer to illustrate wrapping.
</BODY>
</HTML>