您好,欢迎访问一九零五行业门户网

horizonal scroll bar,vertical top align ,display conten in one line css for table or div_html/css_WEB-ITnose

今天边学边做了些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 1.........column 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 上对齐
其它类似信息

推荐信息