当前位置: 代码迷 >> HTML/CSS >> 运用CSS作表格的页面居中显示
  详细解决方案

运用CSS作表格的页面居中显示

热度:160   发布时间:2012-08-24 10:00:21.0
使用CSS作表格的页面居中显示



?
?<style type="text/css">

.div {

? ?position:absolute;

? ?top:50%;

? ?left:50%;

? ?margin:-180px 0 0 -240px;

? ?width:480px;

? ?height:300px;

? ?}

.fie{

width:460px;

height:280px;

border: #C0C0C0 solid 1px;?

}

td{

height:20px;

}

</style>

?

?

外层用<div>标签包含<fieldset>

div的CSS格式用.div

fieldset的CSS格式用.fie

实现div页面居中的效果...美化页面

  相关解决方案