我尝试制作左下角单元格没有边框的下表,有人可以帮忙吗?
RectF rect=new RectF(0, 0, getWidth(), getHeight());
public void drawOval (rect, paint);
这是代码
----
| |
-------
| | |
-------
答案 0 :(得分:4)
CSS:
table tr:first-child td:first-child{
border: 0px;
}
或者:
table tr:nth-child(1) td:nth-child(1){
border: 0px;
}
试试这个。希望它有效