想问一个菜鸟问题,在asp.net中的table如何使它的边框变为虚线?
在table里面加上<table width="60" height="25" style="border:1px dotted #000000">
<tr>
<td>
</td>
</tr>
</table>
--------------------编程问答-------------------- border-style: <值>
none:无样式;
dotted:点线;
dashed:虚线;
solid:实线;
double:双线;
groove:槽线;
ridge:脊线;
inset:内凹;
outset:外凸。 --------------------编程问答-------------------- 使用javascript,重新設置該table的style屬性 --------------------编程问答--------------------
.tdLeftTop
{
border-top: 1px dotted #000000;
border-left: 1px dotted #000000;
border-bottom: 1px dotted #000000;
border-right: 1px dotted #000000;
}
.tdRightTop
{
border-top: 1px dotted #000000;
border-right: 1px dotted #000000;
border-bottom: 1px dotted #000000;
}
.tdLeft
{
border-left: 1px dotted #000000;
border-bottom: 1px dotted #000000;
border-right: 1px dotted #000000;
}
.tdRight
{
border-right: 1px dotted #000000;
border-bottom: 1px dotted #000000;
}
--------------------编程问答-------------------- 什么都被你们说完了。楼主会不会结贴?
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr>
<td class="tdLeftTop"> </td>
<td class="tdRightTop"> </td>
<td class="tdRightTop"> </td>
</tr>
<tr>
<td class="tdLeft"> </td>
<td class="tdRight"> </td>
<td class="tdRight"> </td>
</tr>
<tr>
<td class="tdLeft"> </td>
<td class="tdRight"> </td>
<td class="tdRight"> </td>
</tr>
</table>
不知道怎么结贴?!请查看下面的帖子。
http://topic.csdn.net/u/20080110/19/7cb462f1-cac6-4c28-848e-0a879f4fd642.html --------------------编程问答-------------------- 什么都被你们说完了。楼主会不会结贴?
不知道怎么结贴?!请查看下面的帖子。
http://topic.csdn.net/u/20080110/19/7cb462f1-cac6-4c28-848e-0a879f4fd642.html
竹子真强!
=================================
楼主用CSS控制table样式,可以实现你说的功能,方法前面各位都说了
补充:.NET技术 , ASP.NET