当前位置:Gxlcms > html代码 > horizonalscrollbar,verticaltopalign,displayconteninonelinecssfortableordiv_html/css_WEB-ITnose

horizonalscrollbar,verticaltopalign,displayconteninonelinecssfortableordiv_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:18人阅读

今天边学边做了些css的tasks.下面几点今后会用到。

.box
{
overflow:auto; // 1。

.....
当table内容过高或过长时自动产生scroll bar
}
.tbcontent{
font-family: Arial, Tahoma, Verdana, Calibri;
border:solid #ababab;
-moz-border-radius: 5px;
border-bottom-width: 2px;
border-top-width: 25px;
width: 100%;
text-align:left;
}
#customers
{
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
width:100%;
border-collapse:collapse;
border:solid #999999;
border-bottom-width: 2px;
border-top-width: 25px;
-moz-border-radius: 5px;
}

#customers td, #customers th
{
font-size:1em;
padding:3px 7px 2px 7px;
height:20px;
text-align:center;
white-space:nowrap;// 2。...................
Column Header 1Column Header N
当列数过多的时候 Column Header k 会显示成多行,
}

#customers th
{
font-size:1.1em;
text-align:center;
padding-top:5px;
padding-bottom:4px;
background-color:#bcbcbc;
color:#ffffff;
}

#customers tr.alt td // 3。 实现斑马线
{
color:#000000;
background-color:#dedede;
text-align:center;
}
.title
{
position:relative;
top:20px;
left:10px;
color:#ffffff;
font-weight: bold;}

// 4.能实现两个div 上对齐

人气教程排行