css技巧

来源:互联网 发布:足球大师捏脸数据库 编辑:程序博客网 时间:2024/05/18 13:04

一、标准浏览器中固定高度值的容器是不会象IE6里那样被撑开的,那我又想固定高度,又想能被撑开需要怎样设置呢?办法就是去掉height设置min-height:200px; 这里为了照顾不认识min-height的IE6 可以这样定义。 height:auto!important;height:50px; min-height:50px;

 

二、设置一个div居中

<style type="text/css">
<!--
div {
position:absolute;
top:50%;
left:50%;
margin:-100px 0 0 -100px;
width:200px;
height:200px;
border:1px solid red;
}
-->
</style>