szlinz 发表于 2008-4-20 11:24:56

CSS常用效果实现方法{不断更新中}

1、CSS、DIV界面垂直与水平居中的写法
{width:612px; height:470px; margin-top:-235px; margin-left:-306px; position:absolute; top:50%; left:50%;}

2、两行布局一行固定高度一行自适应满屏
<!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" c />
<title>高度满屏</title>
<style type="text/css">
html,body{
height:100%;}
body{
padding:0;
margin:0;}
#top{
height:50px;
background-color:#CCC;
color:#fff;}
#autoHeight{
position:absolute;
top:50px;
right:0;
left:0;
bottom:0;
height:expression((document.body.clientHeight - 50) + "px");
width:100%;
background-color:#999;
color:#fff;}
</style>
</head>

<body>
<div id="top">top</div>
<div id="autoHeight">autoHeight</div>
</body>
</html>

3、去掉链接虚框方法:样式表法
a,area { blr:expression(this.onFocus=this.blur()) } /* for IE */
:focus { -moz-outline-style: none; } /* for Firefox */

[ 本帖最后由 szlinz 于 2008-4-20 11:28 编辑 ]

gwpxjb 发表于 2008-4-21 08:39:17

稍微学习下~~

沧蓝 发表于 2008-4-21 16:15:51

对于第一个,补充说明一下:

margin-top 和 margin-left 的值为长宽值的一半。

caincheung 发表于 2008-4-24 14:26:09

顶一个

shipfriend 发表于 2008-4-24 21:22:37

function center(div)
{
   var oDiv = getElementById(div);
   oDiv.style.position="absolute";
   oDiv.style.top = document.body.clientHeight/2 - parsInt(oDiv.style.height/2);
   oDiv.style.left = document.body.clientWidth/2 - parsInt(oDiv.style.width/2);
}

还有那个CSS里面的expression还有这种用法啊?没看到过!

shipfriend 发表于 2008-4-24 21:23:21

修改var oDiv = document.getElementById(div);

shipfriend 发表于 2008-4-24 21:24:06

修改parsInt换成parseInt

guava 发表于 2008-5-12 12:43:45

不错 最近我也想做这个东西
css也可以套一些设计模式啊
设计模式是样好东西 有什么大牛出来讲解下吗?

ambo 发表于 2008-7-19 21:32:25

期待大家继续补充...

yeyunan 发表于 2008-9-22 10:51:16

css不建议使用expression
页: [1] 2
查看完整版本: CSS常用效果实现方法{不断更新中}