css table
<asp:GridView ID="GridView1" runat="server" Width="100%"
HorizontalAlign="Center" CellPadding="1" AutoGenerateColumns="False" AllowPaging="true"
CellSpacing="1" BorderWidth="0px" BackColor="#6594D1"
onrowdatabound="GridView1_RowDataBound" onsorting="GridView1_Sorting"
onselectedindexchanging="GridView_SelectedIndexChanging" AllowSorting="True">
<AlternatingRowStyle CssClass="TD-BG-LAN" BackColor="#ffffef" BorderColor="#ffffff"></AlternatingRowStyle>
<RowStyle CssClass="TD-BG-BAI" BackColor="white" Height="22"></RowStyle>
<HeaderStyle HorizontalAlign="Center" CssClass="TR-LAN" BackColor="#CCCC99" Height="24"></HeaderStyle>
<Columns>
<asp:CommandField ShowSelectButton="true" HeaderStyle-Width="5%"
&n
相关文档:
ie6中div的高度自动设置,到了ie7和ie8就不行了,需要设置css
/*针对非IE*/
div:after {
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}
/*针对IE*/
div{zoom:1;} ......
强制不换行
div{
white-space:nowrap;
}
自动换行
div{
word-wrap: break-word;
word-break: normal;
}
强制英文单词断行
div{
word-break:break-all;
}
源地址:http://www.iwms.net/n1919c40.aspx
......
CSS定位令你可以将一个元素精确地放在页面上你所指定的地方。联合使用定位与浮动(参见第13课),你将能够创建多种高级而精确的布局。
本课我们将讨论以下内容:
CSS定位的原理
绝对定位
相对定位
CSS定位的原理
把浏览器窗口想象成一个坐标系统:
CSS定位的原理是:你可以将任何盒子(box)放置在坐标系统的任何 ......
今天刚弄的,呵呵
index.asp
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T ......