Skip to content

Commit 62572e4

Browse files
sabbCodesservo-wpt-sync
authored andcommitted
layout: Make border colour black instead of gray
Signed-off-by: Sabb <sarafaabbas@gmail.com>
1 parent 573966c commit 62572e4

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>td default border color - ref</title>
4+
<style>
5+
body { background: #fff; color: black; }
6+
td {
7+
width: 100px;
8+
border-style: solid;
9+
border-width: 12px;
10+
border-color: black;
11+
}
12+
</style>
13+
<table>
14+
<tr>
15+
<td>Some data</td>
16+
</tr>
17+
</table>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<title>td default border color</title>
4+
<style>
5+
body { background: #fff; color: black; }
6+
td {
7+
width: 100px;
8+
border-style: solid;
9+
border-width: 12px;
10+
}
11+
</style>
12+
<table>
13+
<tr>
14+
<td>Some data</td>
15+
</tr>
16+
</table>

0 commit comments

Comments
 (0)