摘要: 今天在做一个自制表格式发现了一个问题,改了许久没找到解决方法,于是就百度了一下,原来align在IE中可以居中但在火狐中怎不可以。解决方法是:把原来用到align:center或text-align:center的地方用在对应的style里面用margin: 0px auto替换。这样既可以在火狐中居中也可以再IE中居中。以下是具体代码:这个是我第一次写的居中表格的源代码:【只能在IE7中居中】&... 阅读全文
posted @ 2009-08-05 19:45 djune 阅读(2388) 评论(0) 推荐(0) 编辑
摘要: 第一种:<table width="300" border="1" cellspacing="0" style="border-collapse:collapse;"><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td&... 阅读全文
posted @ 2009-08-04 16:46 djune 阅读(570) 评论(0) 推荐(0) 编辑
摘要: DropDownList.Items的常用方法在最后一项添加:DropDownList.Items.Add("text");orDropDownList.Items.Add(new ListItem("text","value"));在指定的位置添加一项:DropDownList.Items.Insert(index, new ListItem("text","value"));移除指定的项:Dr... 阅读全文
posted @ 2009-08-02 21:24 djune 阅读(700) 评论(0) 推荐(0) 编辑