首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

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

2012-08-24 
使用CSS作表格的页面居中显示??style typetext/css.div { ? ?position:absolute ? ?top:50% ? ?lef

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


运用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页面居中的效果...美化页面

热点排行