Skip to content

Commit

Permalink
Implement <hr> 'color' attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
frewsxcv authored and Ms2ger committed Nov 17, 2015
1 parent a084258 commit 5b042b7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
@@ -0,0 +1,22 @@
<!doctype html>
<meta charset=utf-8>
<style>
.hr {
color: gray;
border-style: inset;
border-width: 1px;
margin: 0.5em auto;
}

.green {
color: green;
}

.no-inset {
border-style: solid;
}
</style>
<div class='hr'></div>
<div class='hr no-inset'></div>
<div class='hr no-inset'></div>
<div class='hr green no-inset'></div>
@@ -0,0 +1,7 @@
<!doctype html>
<meta charset=utf-8>
<link rel=match href="color-ref.html">
<hr>
<hr color="">
<hr color=transparent>
<hr color=green>

0 comments on commit 5b042b7

Please sign in to comment.