html-email: add role=presentation
Add role="presentation" on table tag to help screenreaders' restitution. It is not a data table but a layout table so we do not need to make a screenreader reads all the table structure.
This commit is contained in:
parent
e1292194df
commit
8ea3efc08b
|
@ -39,7 +39,7 @@ Inline your CSS as much as possible.
|
||||||
### Basic layout
|
### Basic layout
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<table cellpadding="0" cellspacing="0">
|
<table cellpadding="0" cellspacing="0" role="presentation">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="auto"></td>
|
<td width="auto"></td>
|
||||||
<td width="600" background="#ffffff">
|
<td width="600" background="#ffffff">
|
||||||
|
|
Loading…
Reference in New Issue