有任何问题都贴上来,我一一解答!
css吧
全部回复
仅看楼主
level 8
专a1韦德 楼主
我会的给你回复,不会的查资料给你回复!
2014年06月19日 01点06分 1
level 3
网页兼容性问题怎么学习解决
2014年06月19日 06点06分 2
js css ?
2014年06月20日 00点06分
level 13
鼓励鼓励
2014年06月19日 14点06分 3
level 4
float 有时候换行了是什么原因?
2014年06月20日 01点06分 4
宽度不够 还是只浮动了一个?
2014年06月20日 03点06分
回复 专a1韦德 :要两个都浮动才能在一行么?向左浮动和向左对齐有什么区别没?
2014年06月20日 14点06分
回复 浮氵生 :向左浮动是整个div,向左对齐text-align:left; 是指div里的内容
2014年06月21日 04点06分
回复 浮氵生 :text-align用于控制内敛元素,float都是可以用的 控制本身
2014年06月21日 06点06分
level 11
一起来帮大家!走起来!
2014年06月20日 03点06分 5
level 1
conten 内容IE下不显示,但FF可以显示,为什么呢?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="text/css">
p.tel:after
{content: " 网站内容"
}
</style>
</head>
<body>
<p class="tel"></p>
</body>
</html>
2014年06月20日 04点06分 6
:after伪类属于css3,不支持css3的就不显示
2014年06月20日 05点06分
回复 496545016 :+1
2014年06月20日 06点06分
level 3
求解,
我在div中写了一个contenteditable="true" 怎么 输入内容后怎么退格键不管用呀
2014年06月21日 06点06分 8
这是一个html5属性 你用的什么浏览器呢?
2014年06月21日 06点06分
如果想在html4中使用的话,contentEditable 就要大写
2014年06月21日 06点06分
level 4
绝对定位和相对定位还是搞不太懂 我弄了一个例子 在这个例子里那个small的div里面改成绝对定位或者相对定位为什么div没有一点变化?这里应该用什么定位? <!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-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
#small{
height:50px;
width:50px;
background:red;
position:relative;
top:66px;
left:50px;
}
#big{
height:500px;
width:500px;
background:blue;
float:left;
}
#div1{
top:400px;
left:400px;
position:absolute;
}
</style>
<script>
</script>
</head>
<body>
<div id="div1">
<div id="big"></div>
<div id="small"></div>
</div>
</body>
</html>
2014年06月21日 07点06分 9
你这个small是定位好了的。 定位,自己相对于父级绝对定位,如果父级没有设置的话就相对于浏览器定位!你的small就是相对于div1定位的。
2014年06月23日 01点06分
level 8
专a1韦德 楼主
都是大神 竟然没人
2014年07月04日 04点07分 10
level 1
/*=========================↓视频框架↓==========================*/
/*视频列表*/
.main_list {
width: 100%;
}
/*列表框架*/
.main_list ul li{
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #CCC;
margin-bottom: 10px;
}
.main_list ul li:hover {
background-color: #EFEFEF;
}
/*图片*/
.main_list ul li a img {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-transition:all .2s ease;
-moz-transition:all .2s ease;
transition:all .2s ease;
height: 90px;
width: 120px;
border: 1px solid #CCC;
}
.main_list ul li:hover img{
-webkit-transition:all .2s ease;
-moz-transition:all .2s ease;
transition:all .2s ease;
margin-left: 50px;
}
/*视频分类*/
.main_list ul li a.l{
-webkit-transition:all .2s ease;
-moz-transition:all .2s ease;
transition:all .2s ease;
position: absolute;
color: #666;
background-color: #F7F7F7;
font-weight: bold;
left: 0px;
top: 0px;
border-right-width: 1px;
border-bottom-width: 1px;
border-right-style: solid;
border-bottom-style: solid;
border-right-color: #CCC;
border-bottom-color: #CCC;
/*圆角*/
-webkit-border-bottom-right-radius: 5px;
-moz-border-radius-bottomright: 5px;
border-bottom-right-radius: 5px;
padding-top: 5px;
padding-right: 8px;
padding-bottom: 5px;
padding-left: 8px;
/*透明*/
filter:alpha(opacity=90);
-moz-opacity:0.9;
-khtml-opacity: 0.9;
opacity: 0.9;
}
.main_list ul li a.l:hover {
color: #C00;
padding-bottom: 5px;
padding-top: 14px;
}
.main_list ul li:hover a.l{
-webkit-transition:all .2s ease;
-moz-transition:all .2s ease;
transition:all .2s ease;
position: absolute;
}
/*视频标题*/
.main_list ul li a.title{
font-family: "Microsoft YaHei",微软雅黑,"Microsoft JhengHei",华文细黑,STHeiti,MingLiu;
font-size: 18px;
color: #09C;
font-weight: bold;
}
.main_list ul li:hover a.title{
-webkit-transition:all .2s ease;
-moz-transition:all .2s ease;
transition:all .2s ease
}
.main_list ul li a.title:hover {
color: #6CF;
}
/*视频说明*/
.main_list ul li .q {
height: 28px;
width: auto;
overflow: hidden;
}
/*发表日期*/
.main_list ul li .c {
}
/*选页按钮*/
.page {
width:95%;
margin:0px auto;
background-color:rgba(0,0,0,0.6);
border:4px solid #FFF;
-webkit-border-radius:5px;
-moz-border-radius: 5px;
}
/*其它页*/
.page li a{
}
/*当前页*/
.current {
我的这个偶数列显示不出背景 是不是这里出了问题QAQ 这个css是在bilibili上用的
2014年07月04日 05点07分 11
偶数列在哪儿 [疑问]
2014年07月04日 05点07分
回复 专a1韦德 :你有没有QQ 我QQ上发给你 我也不是太懂 我的Q 291599287 也可以我加你
2014年07月05日 03点07分
回复 TR逐风 :我的qq 513632026 加我一下吧 我加不了 不好意思哈
2014年07月06日 02点07分
回复 专a1韦德 :我找到代码了:D
2014年07月06日 04点07分
level 1
有个CSS样式问题想请教一下
zblog程序中首页略缩图css样式大小位置设计
2014年07月06日 06点07分 13
1