您好Ive遇到了这个问题,在这里我似乎无法使表数据边框与边框的边框对齐,这是代码:
scale_color_manual("Type of X", values = c("blue", "red"))
以及CSS:
<table id="proxy-list">
<tr>
<th>Proxies</th>
</tr>
<tr>
<td>Proxy1</td>
<td>12.34.54.78.90</td>
</tr>
</table>
我一直在尝试永久修复此问题,请帮助!!!!!
答案 0 :(得分:3)
向False
标签添加colspan
属性。 colspan属性定义单元格应跨越的列数。
th
<th colspan="2">Proxies</th>
#proxy-list {
position: absolute;
top: 15%;
left: 60%;
border: 5px solid #e83737;
border-collapse: collapse;
}
th {
width: 300px;
height: 50px;
border: 5px solid #e83737;
text-align: center;
}
th,
td {
color: #4f8aff;
}
td {
width: 20px;
height: 180px;
padding-bottom: 100px;
}
答案 1 :(得分:0)
Set colspan=2 in th header
<table id="proxy-list">
<tr>
<th **colspan=2**>Proxies</th>
</tr>
<tr>
<td>Proxy1</td>
<td>12.34.54.78.90</td>
</tr>
</table>