Closed
Bug 1062858
Opened 10 years ago
Closed 10 years ago
border-bottom problem with rowspan
Categories
(Core :: Layout: Tables, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 935914
People
(Reporter: flavien.beninca, Unassigned)
Details
(4 keywords, Whiteboard: DUPEME)
Attachments
(1 file)
15.72 KB,
image/png
|
Details |
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.103 Safari/537.36
Steps to reproduce:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>My template</title>
<meta name="description" content="My template">
<style>
table {
border-collapse: collapse;
}
th, td {
border-bottom: solid 1px #AAAAAA;
padding: 5px;
}
</style>
</head>
<body class="">
<table>
<tr>
<th>th</th>
<td>td</td>
<th>th</th>
<td>td</td>
</tr>
<tr>
<th>th</th>
<td>td</td>
<th rowspan="2">th</th>
<td>td</td>
</tr>
<tr>
<th>th</th>
<td>td</td>
<td>td</td>
</tr>
<tr>
<th>th</th>
<td>td</td>
<th rowspan="2">th</th>
<td>td</td>
</tr>
<tr>
<th>th</th>
<td>td</td>
<td>td</td>
</tr>
<tr>
<th>th</th>
<td>td</td>
<th>th</th>
<td>td</td>
</tr>
</table>
</body>
</html>
Actual results:
See attach file
Expected results:
See attach file
Reporter | ||
Updated•10 years ago
|
Updated•10 years ago
|
Component: General → Layout: Tables
Product: Firefox → Core
Updated•10 years ago
|
Whiteboard: DUPEME
Updated•10 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 10 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•