现有问题如下:
有一个表格,表头固定,上下拖动的时候表头位置不变。
现需要做成表头固定,而且第一列也固定不变,而现在问题如下:
两个CSS样式:
.Freezing
{
position: relative;
table-layout: fixed;
top: expression(this.offsetParent.scrollTo ......
当个层div CSS样式被设置成float:left以后
他就是一个非标准流了,他的高度也变成了0?
请问什么是非标准流(通俗一点,呵呵)?
为什么高度会变成0呢 他不是明明还在页面显示吗。。刚初学CSS,别见笑
非标准流,就是脱离正常的页面渲染
应该是块吧, float是指定对象浮动的位置,可以有上下左右,当 ......
setSampleList : function(dataList){
var newslist = document.getElementById("newslist");
var basePath = document.getElementById("basePath").value;
listparam2 = listparam1;
var html = " ......
HTML code:
<div style="width:200px; border:1px #CCC solid; height:160px;">
<div style="width:100%; z-index:1000; border:1px #F00 solid; height:50px;">
<!--红色框 -->
</div>
<div style="width:100%; z-index:-1; border:1px #000 ......
CSS code:
body {
}
#x
{
width:1024px;
height:768%;
background-color:Red;
position:relative;
}
#x.top
{ position:absolute;
width:800px;
height:100px;
top:0px;
}
#.left
{ position:absolute;
width:198px;
height:17px;
float:left;
top:1 ......
一博客程序,列表显示博文,我想显示前面200个字符,采用字符截取的方法,输出该字符串后,右边的一个层就跑到最下面去了,不截取全文显示的时候又不会,请问要怎么设置层的问题
下面是css文件
body {
margin: 0px 0px 20px 0px;
background-color: #0F314E;
text ......