doc: set alignments in NIC overview table

Some CSS alignments were not explicitly set.
The pointer is also set to default for the table.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
Acked-by: John McNamara <john.mcnamara@intel.com>
This commit is contained in:
Thomas Monjalon 2016-04-18 14:28:25 +02:00
parent 3ef24b3d35
commit 38e4ea32e2

View File

@ -53,10 +53,15 @@ Most of these differences are summarized below.
.. raw:: html
<style>
table#id1 {
cursor: default;
}
table#id1 th, table#id1 td {
text-align: center;
}
table#id1 th {
font-size: 80%;
white-space: pre-wrap;
text-align: center;
vertical-align: top;
padding: 2px;
}
@ -69,6 +74,7 @@ Most of these differences are summarized below.
}
table#id1 td:first-child {
padding-left: 1em;
text-align: left;
}
</style>