网页固定宽度并且居中的方法

1、<div>标签的固定长度并且居中的方法

<style type="text/css">
        #divid                             //div标签的id
 {
            margin:0px auto;        
            width:900px              //div标签的宽度
}
    </style>

 2、<form>标签的固定长度

<style type="text/css">
        #form1
        {
            margin:0px auto;
            width:900px
        }
    </style>

 

 

posted @ 2012-08-07 17:35  Ro_s__  阅读(554)  评论(0编辑  收藏  举报