margin: 0px;
padding: 0px;
background-attachment: fixed;
background-image: url(images/tupian/a017.JPG);
background-repeat: no-repeat;
background-position: left bottom;
}
再为layout编写CSS代码,确定宽高度外,我进行了绝对定位,设定了上下左右边框距离,为缩小右上角的背景图片,进行了负数设置。
#layout {
height: 480px;
width: 720px;
margin-top: 20px;
margin-right: 30px;
margin-bottom: 20px;
margin-left: 150px;
padding: 40px;
background-image: url(images/tupian/a017-2.jpg);
background-position: right -100px;
background-repeat: no-repeat;
border: thick double #F79A94;
font-family: "宋体";
font-size: 9pt;
color: #993300;
line-height: 150%;
}
如果需要一列固定宽度居中设置,只需把上面四个margin值改为:"margin: 0px auto;"即可。